- remove parameters, this is just an undocumented helper class
[plcapi.git] / PLC / BootStates.py
index fcfcd46..cabf4fc 100644 (file)
@@ -4,20 +4,14 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: BootStates.py,v 1.1 2006/09/06 15:36:06 mlhuang Exp $
+# $Id: BootStates.py,v 1.2 2006/09/25 14:48:07 mlhuang Exp $
 #
 
-from PLC.Parameter import Parameter
-
 class BootStates(list):
     """
     Representation of the node_bootstates table in the database.
     """
 
-    fields = {
-        'boot_state': Parameter(int, "Node boot state"),
-        }
-
     def __init__(self, api):
         sql = "SELECT * FROM boot_states"