Added marker interface for assertion types.
[shibboleth/opensaml2.git] / saml / saml1 / binding / SAML1POSTDecoder.h
index 0ce6524..be903f5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- *  Copyright 2001-2006 Internet2
+ *  Copyright 2001-2007 Internet2
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -34,16 +34,12 @@ namespace opensaml {
         {
         public:
             SAML1POSTDecoder(const DOMElement* e);
-            virtual ~SAML1POSTDecoder();
+            virtual ~SAML1POSTDecoder() {}
             
-            Response* decode(
+            xmltooling::XMLObject* decode(
                 std::string& relayState,
-                const saml2md::RoleDescriptor*& issuer,
-                bool& issuerTrusted,
-                const HTTPRequest& httpRequest,
-                const saml2md::MetadataProvider* metadataProvider=NULL,
-                const xmltooling::QName* role=NULL,
-                const TrustEngine* trustEngine=NULL
+                const GenericRequest& genericRequest,
+                SecurityPolicy& policy
                 ) const;
         };