Add code for non-covariant build.
[shibboleth/cpp-opensaml.git] / saml / saml1 / binding / SAML1ArtifactDecoder.h
index 141a83e..f887788 100644 (file)
@@ -34,16 +34,12 @@ namespace opensaml {
         {
         public:
             SAML1ArtifactDecoder(const DOMElement* e);
-            virtual ~SAML1ArtifactDecoder();
+            virtual ~SAML1ArtifactDecoder() {}
             
-            Response* decode(
+            xmltooling::XMLObject* decode(
                 std::string& relayState,
-                const saml2md::RoleDescriptor*& issuer,
-                const XMLCh*& securityMech,
-                const HTTPRequest& httpRequest,
-                const saml2md::MetadataProvider* metadataProvider=NULL,
-                const xmltooling::QName* role=NULL,
-                const TrustEngine* trustEngine=NULL
+                const GenericRequest& genericRequest,
+                SecurityPolicy& policy
                 ) const;
         };