Draft of query tool, not working yet.
[shibboleth/sp.git] / shibsp / ServiceProvider.h
index cd4d3e1..d4026fe 100644 (file)
 #define __shibsp_sp_h__
 
 #include <shibsp/util/PropertySet.h>
+#include <saml/binding/SecurityPolicyRule.h>
 #include <xmltooling/signature/CredentialResolver.h>
 #include <xmltooling/util/StorageService.h>
 
 namespace shibsp {
 
     class SHIBSP_API Application;
+    class SHIBSP_API Handler;
     class SHIBSP_API ListenerService;
     class SHIBSP_API RequestMapper;
     class SHIBSP_API SessionCache;
@@ -43,7 +45,7 @@ namespace shibsp {
      * <p>A ServiceProvider exposes configuration and infrastructure services required
      * by the SP implementation, allowing a flexible configuration format.
      */
-    class SHIBSP_API ServiceProvider : public virtual xmltooling::Lockable, public virtual PropertySet
+       class SHIBSP_API ServiceProvider : public virtual xmltooling::Lockable, public virtual PropertySet
     {
         MAKE_NONCOPYABLE(ServiceProvider);
     protected:
@@ -100,6 +102,14 @@ namespace shibsp {
         virtual xmlsignature::CredentialResolver* getCredentialResolver(const char* id) const=0;
 
         /**
+                * Returns the security policy rules for an identified policy.
+         *
+                * @param id    identifies the policy rules to return, or NULL for the default policy
+         * @return an array of policy rules
+                */
+               virtual std::vector<const opensaml::SecurityPolicyRule*>& getPolicyRules(const char* id=NULL) const=0;
+
+        /**
          * Returns a RequestMapper instance.
          * 
          * @param required  true iff an exception should be thrown if no RequestMapper is available
@@ -107,8 +117,6 @@ namespace shibsp {
          */
         virtual RequestMapper* getRequestMapper(bool required=true) const=0;
         
-        //virtual ISessionCache* getSessionCache() const=0;
-        
         /**
          * Returns an Application instance matching the specified ID.
          * 
@@ -170,7 +178,7 @@ namespace shibsp {
     void SHIBSP_API registerServiceProviders();
 
     /** SP based on integrated XML and native server configuration. */
-    #define XML_SERVICE_PROVIDER "edu.internet2.middleware.shibboleth.sp.provider.XMLServiceProvider"
+    #define XML_SERVICE_PROVIDER "XML"
 };
 
 #endif /* __shibsp_sp_h__ */