Add chaining extractor.
[shibboleth/sp.git] / shibsp / RequestMapper.h
index b680e6b..646cbdd 100644 (file)
 
 #include <shibsp/base.h>
 #include <xmltooling/Lockable.h>
+#include <xmltooling/io/HTTPRequest.h>
 
 namespace shibsp {
 
     class SHIBSP_API AccessControl;
     class SHIBSP_API PropertySet;
-    class SHIBSP_API SPRequest;
 
     /**
      * Interface to a request mapping plugin
@@ -55,7 +55,7 @@ namespace shibsp {
          * @param request   SP request
          * @return configuration settings and effective AccessControl plugin, if any
          */        
-        virtual Settings getSettings(const SPRequest& request) const=0;
+        virtual Settings getSettings(const xmltooling::HTTPRequest& request) const=0;
     };
 
     /**
@@ -64,10 +64,10 @@ namespace shibsp {
     void SHIBSP_API registerRequestMappers();
 
     /** XML-based RequestMapper implementation. */
-    #define XML_REQUEST_MAPPER      "edu.internet2.middleware.shibboleth.sp.provider.XMLRequestMapProvider"
+    #define XML_REQUEST_MAPPER      "XML"
 
     /** Hybrid of XML and platform-specific configuration. */
-    #define NATIVE_REQUEST_MAPPER   "edu.internet2.middleware.shibboleth.sp.provider.NativeRequestMapProvider"
+    #define NATIVE_REQUEST_MAPPER   "Native"
 };
 
 #endif /* __shibsp_reqmap_h__ */