#include <shibsp/util/PropertySet.h>
Inheritance diagram for shibsp::PropertySet:
Public Member Functions | |
virtual const PropertySet * | getParent () const =0 |
Returns parent of this PropertySet, if any. | |
virtual void | setParent (const PropertySet *parent)=0 |
Establishes a "parent" PropertySet to supply inherited settings. | |
virtual std::pair< bool, bool > | getBool (const char *name, const char *ns=NULL) const =0 |
Returns a boolean-valued property. | |
virtual std::pair< bool, const char * > | getString (const char *name, const char *ns=NULL) const =0 |
Returns a string-valued property. | |
virtual std::pair< bool, const XMLCh * > | getXMLString (const char *name, const char *ns=NULL) const =0 |
Returns a Unicode string-valued property. | |
virtual std::pair< bool, unsigned int > | getUnsignedInt (const char *name, const char *ns=NULL) const =0 |
Returns an unsigned integer-valued property. | |
virtual std::pair< bool, int > | getInt (const char *name, const char *ns=NULL) const =0 |
Returns an integer-valued property. | |
virtual void | getAll (std::map< std::string, const char * > &properties) const =0 |
Returns a map of all known properties in string form. | |
virtual const PropertySet * | getPropertySet (const char *name, const char *ns=shibspconstants::ASCII_SHIB2SPCONFIG_NS) const =0 |
Returns a nested property set. | |
virtual const xercesc::DOMElement * | getElement () const =0 |
Returns a DOM element representing the property container, if any. |
|
Returns a map of all known properties in string form.
Implemented in shibsp::DOMPropertySet. |
|
Returns a boolean-valued property.
Implemented in shibsp::DOMPropertySet. |
|
Returns a DOM element representing the property container, if any.
Implemented in shibsp::DOMPropertySet. |
|
Returns an integer-valued property.
Implemented in shibsp::DOMPropertySet. |
|
Returns parent of this PropertySet, if any.
Implemented in shibsp::DOMPropertySet. |
|
Returns a nested property set.
Implemented in shibsp::DOMPropertySet. |
|
Returns a string-valued property.
Implemented in shibsp::DOMPropertySet. |
|
Returns an unsigned integer-valued property.
Implemented in shibsp::DOMPropertySet. |
|
Returns a Unicode string-valued property.
Implemented in shibsp::DOMPropertySet. |
|
Establishes a "parent" PropertySet to supply inherited settings.
Implemented in shibsp::DOMPropertySet. |