management
package instead@Deprecated public interface ConfigurationParameter
SystemMember
.Modifier and Type | Method and Description |
---|---|
String |
getDescription()
Deprecated.
Gets the full description of this configuration parameter
|
String |
getName()
Deprecated.
Gets the identifying name of this configuration parameter.
|
Object |
getValue()
Deprecated.
Gets the current value
|
String |
getValueAsString()
Deprecated.
Gets the current value as a string
|
Class |
getValueType()
Deprecated.
Gets the class type of the value
|
boolean |
isArray()
Deprecated.
Returns true if this config parameter uses a string array for value.
|
boolean |
isFile()
Deprecated.
Returns true if this config parameter represents a File value.
|
boolean |
isInetAddress()
Deprecated.
Returns true if this config parameter represents an InetAddress value.
|
boolean |
isModifiable()
Deprecated.
True if this is modifiable; false if read-only
|
boolean |
isOctal()
Deprecated.
Returns true if this config parameter represents an octal value.
|
boolean |
isString()
Deprecated.
Returns true if this config parameter represents a string value
|
void |
setValue(Object value)
Deprecated.
Sets a new value for this configuration parameter.
|
String getName()
String getDescription()
Object getValue()
String getValueAsString()
Class getValueType()
boolean isModifiable()
boolean isArray()
boolean isInetAddress()
boolean isFile()
boolean isOctal()
boolean isString()
void setValue(Object value) throws UnmodifiableConfigurationException
value
- the new value which must be of type getValueType()
IllegalArgumentException
- if value type does not match getValueType()
UnmodifiableConfigurationException
- if attempting to set value when isModifiable is
false