Add sslIndex option to override ACS index in metadata generation.
[shibboleth/sp.git] / shibsp / util / PropertySet.h
index eb0f242..bfc7988 100644 (file)
@@ -23,7 +23,8 @@
 #ifndef __shibsp_propset_h__
 #define __shibsp_propset_h__
 
-#include <shibsp/base.h>
+#include <shibsp/util/SPConstants.h>
+#include <map>
 #include <xercesc/dom/DOM.hpp>
 
 namespace shibsp {
@@ -99,13 +100,20 @@ namespace shibsp {
         virtual std::pair<bool,int> getInt(const char* name, const char* ns=NULL) const=0;
 
         /**
+         * Returns a map of all known properties in string form.
+         *
+         * @param properties    map to populate
+         */
+        virtual void getAll(std::map<std::string,const char*>& properties) const=0;
+
+        /**
          * Returns a nested property set.
          * 
          * @param name  nested property set name
          * @param ns    nested property set namespace, or NULL
          * @return the nested property set, or NULL
          */        
-        virtual const PropertySet* getPropertySet(const char* name, const char* ns="urn:mace:shibboleth:2.0:native:sp:config") const=0;
+        virtual const PropertySet* getPropertySet(const char* name, const char* ns=shibspconstants::ASCII_SHIB2SPCONFIG_NS) const=0;
         
         /**
          * Returns a DOM element representing the property container, if any.