Package com.opencloud.rhino.persistence
Class ConfigProperty
- java.lang.Object
-
- com.opencloud.rhino.persistence.ConfigProperty
-
- All Implemented Interfaces:
Serializable
public final class ConfigProperty extends Object implements Serializable
A configuration property with a name, type, and value.
This class differs from the SLEE-defined
ConfigProperties.Property
class in that the configuration property’s value in this class is represented as a string rather than required to be of the specified type. This allows the passing of variable references in property values which may be resolved at some later time.- Since:
- Rhino 2.5.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConfigProperty(String name, String type, String value)
Create a new configuration property with a name, type, and value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getName()
Get the configuration property’s name.String
getType()
Get the configuration property’s Java type.String
getValue()
Get the configuration property’s value.int
hashCode()
String
toString()
-