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.
Constructor and Description |
---|
ConfigProperty(String name,
String type,
String value)
Create a new configuration property with a name, type, and value.
|
Modifier and Type | Method and 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() |