| org.xmldb.api.base.Configurable
All known Subclasses: org.ozoneDB.xml.cli.AbstractConfigurable,
Configurable | public interface Configurable (Code) | | Provides the ability to configure properties about an object.
|
Method Summary | |
String | getName() Returns the name associated with the Configurable object. | String | getProperty(String name) Returns the value of the property identified by name .
Parameters: name - the name of the property to retrieve. | void | setProperty(String name, String value) Sets the property name to have the value provided in
value . |
getName | String getName() throws XMLDBException(Code) | | Returns the name associated with the Configurable object.
the name of the object. exception: XMLDBException - with expected error codes.
ErrorCodes.VENDOR_ERROR for any vendorspecific errors that occur.
|
getProperty | String getProperty(String name) throws XMLDBException(Code) | | Returns the value of the property identified by name .
Parameters: name - the name of the property to retrieve. the property value or null if no property exists. exception: XMLDBException - with expected error codes.
ErrorCodes.VENDOR_ERROR for any vendorspecific errors that occur.
|
setProperty | void setProperty(String name, String value) throws XMLDBException(Code) | | Sets the property name to have the value provided in
value .
Parameters: name - the name of the property to set. Parameters: value - the value to set for the property. exception: XMLDBException - with expected error codes.
ErrorCodes.VENDOR_ERROR for any vendorspecific errors that occur.
|
|
|