Add sslIndex option to override ACS index in metadata generation.
[shibboleth/sp.git] / shibsp / util / SPConstants.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/util/SPConstants.h
19  * 
20  * Shibboleth SP XML constants. 
21  */
22
23 #ifndef __shibsp_constants_h__
24 #define __shibsp_constants_h__
25
26 #include <shibsp/base.h>
27 #ifndef SHIBSP_LITE
28 # include <saml/util/SAMLConstants.h>
29 #else
30 # include <shibsp/lite/SAMLConstants.h>
31 #endif
32
33 /**
34  * Shibboleth SP XML constants.
35  */
36 namespace shibspconstants {
37
38     /**  Shibboleth Metadata XML namespace ("urn:mace:shibboleth:metadata:1.0") */
39     extern SHIBSP_API const XMLCh SHIBMD_NS[];
40
41     /** Shibboleth Metadata QName prefix ("shibmd") */
42     extern SHIBSP_API const XMLCh SHIBMD_PREFIX[];
43
44     /** Shibboleth 2.0 SP configuration namespace ("urn:mace:shibboleth:2.0:native:sp:config") */
45     extern SHIBSP_API const XMLCh SHIB2SPCONFIG_NS[];
46
47     /** Shibboleth 2.0 attribute mapping namespace ("urn:mace:shibboleth:2.0:attribute-map") */
48     extern SHIBSP_API const XMLCh SHIB2ATTRIBUTEMAP_NS[];
49
50     /** Shibboleth 2.0 notification namespace ("urn:mace:shibboleth:2.0:sp:notify") */
51     extern SHIBSP_API const XMLCh SHIB2SPNOTIFY_NS[];
52
53     /** Shibboleth 2.0 attribute filter policy namespace ("urn:mace:shibboleth:2.0:afp") */
54     extern SHIBSP_API const XMLCh SHIB2ATTRIBUTEFILTER_NS[];
55
56     /** Shibboleth 2.0 basic matching function namespace ("urn:mace:shibboleth:2.0:afp:mf:basic") */
57     extern SHIBSP_API const XMLCh SHIB2ATTRIBUTEFILTER_MF_BASIC_NS[];
58
59     /** Shibboleth 2.0 SAML matching function namespace ("urn:mace:shibboleth:2.0:afp:mf:saml") */
60     extern SHIBSP_API const XMLCh SHIB2ATTRIBUTEFILTER_MF_SAML_NS[];
61
62     /** Shibboleth 1.x Protocol Enumeration constant ("urn:mace:shibboleth:1.0") */
63     extern SHIBSP_API const XMLCh SHIB1_PROTOCOL_ENUM[];
64
65     /** Shibboleth 1.x URI AttributeNamespace constant ("urn:mace:shibboleth:1.0:attributeNamespace:uri") */
66     extern SHIBSP_API const XMLCh SHIB1_ATTRIBUTE_NAMESPACE_URI[];
67
68     /** Shibboleth 1.x transient NameIdentifier Format constant ("urn:mace:shibboleth:1.0:nameIdentifier") */
69     extern SHIBSP_API const XMLCh SHIB1_NAMEID_FORMAT_URI[];
70
71     /** Shibboleth 1.x AuthnRequest binding/profile ("urn:mace:shibboleth:1.0:profiles:AuthnRequest") */
72     extern SHIBSP_API const XMLCh SHIB1_AUTHNREQUEST_PROFILE_URI[];
73
74     /** Shibboleth 1.3 SessionInit binding/profile ("urn:mace:shibboleth:sp:1.3:SessionInit") */
75     extern SHIBSP_API const char SHIB1_SESSIONINIT_PROFILE_URI[];
76
77     /** Shibboleth 1.3 Local Logout binding/profile ("urn:mace:shibboleth:sp:1.3:Logout") */
78     extern SHIBSP_API const char SHIB1_LOGOUT_PROFILE_URI[];
79     
80     /** Shibboleth 2.0 SP configuration namespace ("urn:mace:shibboleth:2.0:native:sp:config") */
81     extern SHIBSP_API const char ASCII_SHIB2SPCONFIG_NS[];
82 };
83
84 #endif /* __shibsp_constants_h__ */