com.threerings.admin.server.persist
Class ConfigRecord
java.lang.Object
com.samskivert.depot.impl.QueryResult
com.samskivert.depot.PersistentRecord
com.threerings.admin.server.persist.ConfigRecord
- All Implemented Interfaces:
- Serializable, Cloneable
public class ConfigRecord
- extends PersistentRecord
Stores information about a configuration entry in the database.
- See Also:
- Serialized Form
| Methods inherited from class com.samskivert.depot.impl.QueryResult |
clone |
_R
public static final Class<ConfigRecord> _R
NODE
public static final ColumnExp<String> NODE
OBJECT
public static final ColumnExp<String> OBJECT
FIELD
public static final ColumnExp<String> FIELD
VALUE
public static final ColumnExp<String> VALUE
SCHEMA_VERSION
public static final int SCHEMA_VERSION
- See Also:
- Constant Field Values
node
public String node
object
public String object
field
public String field
value
public String value
ConfigRecord
public ConfigRecord()
- An empty constructor for unmarshalling.
ConfigRecord
public ConfigRecord(String node,
String object,
String field,
String value)
getKey
public static Key<ConfigRecord> getKey(String node,
String object,
String field)
- Create and return a primary
Key to identify a ConfigRecord
with the supplied key values.