|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IConfiguration
The IConfiguration
defines the access to the application or server
configuration. The configuration contains properties/settings.
Method Summary | |
---|---|
XmlNode |
getNode(java.lang.String pName)
Gets the value for a property in xml representation. |
java.util.List<XmlNode> |
getNodes(java.lang.String pName)
Gets a list of values for a property in xml representation. |
java.util.List<java.lang.String> |
getProperties(java.lang.String pName)
Gets a list of values for a property which exists more than once. |
java.lang.String |
getProperty(java.lang.String pName)
Gets the value of a property from the configuration. |
java.lang.String |
getProperty(java.lang.String pName,
java.lang.String pDefault)
Gets the value of a property from the configuration. |
Method Detail |
---|
java.lang.String getProperty(java.lang.String pName)
pName
- the property name (e.g /application/securitymanager/class)
null
if the property is not availablejava.lang.String getProperty(java.lang.String pName, java.lang.String pDefault)
pName
- the property name (e.g /application/securitymanager/class)pDefault
- the default value if the property is not available
pDefault
if the property is not availablejava.util.List<java.lang.String> getProperties(java.lang.String pName)
pName
- the property name
null
if the property is not availableXmlNode getNode(java.lang.String pName)
pName
- the property name
null
if the property is not availablejava.util.List<XmlNode> getNodes(java.lang.String pName)
pName
- the property name
null
if the property is not available
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |