Implement artifact resolution support.
[shibboleth/cpp-sp.git] / shibsp / binding / ArtifactResolver.h
1 /*
2  *  Copyright 2001-2007 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * @file shibsp/binding/ArtifactResolver.h
19  * 
20  * SAML artifact resolver for SP use.
21  */
22
23 #ifndef __shibsp_artres_h__
24 #define __shibsp_artres_h__
25
26 #include <shibsp/base.h>
27 #include <saml/binding/MessageDecoder.h>
28
29 namespace shibsp {
30
31     /**
32      * SAML artifact resolver for SP use.
33      */
34     class SHIBSP_API ArtifactResolver : public opensaml::MessageDecoder::ArtifactResolver {
35     public:
36         ArtifactResolver() {}
37         virtual ~ArtifactResolver() {}
38
39         opensaml::saml1p::Response* resolve(
40             const std::vector<opensaml::SAMLArtifact*>& artifacts,
41             const opensaml::saml2md::IDPSSODescriptor& idpDescriptor,
42             opensaml::SecurityPolicy& policy
43             ) const;
44
45         opensaml::saml2p::ArtifactResponse* resolve(
46             const opensaml::saml2p::SAML2Artifact& artifact,
47             const opensaml::saml2md::SSODescriptorType& ssoDescriptor,
48             opensaml::SecurityPolicy& policy
49             ) const;
50     };
51 };
52
53 #endif /* __shibsp_artres_h__ */