Shell of new SP object interface to replace old IConfig layer.
[shibboleth/sp.git] / shibsp / util / PropertySet.h
1 /*
2  *  Copyright 2001-2006 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * @file shibsp/util/PropertySet.h
19  * 
20  * Interface to a generic set of typed properties or a DOM container of additional data.
21  */
22
23 #ifndef __shibsp_propset_h__
24 #define __shibsp_propset_h__
25
26 #include <shibsp/base.h>
27 #include <xercesc/dom/DOM.hpp>
28
29 namespace shibsp {
30
31     /**
32      * Interface to a generic set of typed properties or a DOM container of additional data.
33      */
34     class SHIBSP_API PropertySet
35     {
36         MAKE_NONCOPYABLE(PropertySet);
37     protected:
38         PropertySet() {}
39     public:
40         virtual ~PropertySet() {}
41
42         /**
43          * Returns a boolean-valued property.
44          * 
45          * @param name  property name
46          * @param ns    property namespace, or NULL
47          * @return a pair consisting of a NULL indicator and the property value iff the indicator is true
48          */
49         virtual std::pair<bool,bool> getBool(const char* name, const char* ns=NULL) const=0;
50
51         /**
52          * Returns a string-valued property.
53          * 
54          * @param name  property name
55          * @param ns    property namespace, or NULL
56          * @return a pair consisting of a NULL indicator and the property value iff the indicator is true
57          */
58         virtual std::pair<bool,const char*> getString(const char* name, const char* ns=NULL) const=0;
59
60         /**
61          * Returns a Unicode string-valued property.
62          * 
63          * @param name  property name
64          * @param ns    property namespace, or NULL
65          * @return a pair consisting of a NULL indicator and the property value iff the indicator is true
66          */
67         virtual std::pair<bool,const XMLCh*> getXMLString(const char* name, const char* ns=NULL) const=0;
68
69         /**
70          * Returns an unsigned integer-valued property.
71          * 
72          * @param name  property name
73          * @param ns    property namespace, or NULL
74          * @return a pair consisting of a NULL indicator and the property value iff the indicator is true
75          */
76         virtual std::pair<bool,unsigned int> getUnsignedInt(const char* name, const char* ns=NULL) const=0;
77
78         /**
79          * Returns an integer-valued property.
80          * 
81          * @param name  property name
82          * @param ns    property namespace, or NULL
83          * @return a pair consisting of a NULL indicator and the property value iff the indicator is true
84          */
85         virtual std::pair<bool,int> getInt(const char* name, const char* ns=NULL) const=0;
86
87         /**
88          * Returns a nested property set.
89          * 
90          * @param name  nested property set name
91          * @param ns    nested property set namespace, or NULL
92          * @return the nested property set, or NULL
93          */        
94         virtual const PropertySet* getPropertySet(const char* name, const char* ns="urn:mace:shibboleth:target:config:1.0") const=0;
95         
96         /**
97          * Returns a DOM element representing the property container, if any.
98          * 
99          * @return a DOM element, or NULL
100          */
101         virtual const xercesc::DOMElement* getElement() const=0;
102     };
103 };
104
105 #endif /* __shibsp_propset_h__ */