1 <?xml version="1.0" encoding="UTF-8"?>
3 <xsd:schema targetNamespace="urn:mace:shibboleth:2.0:idp:profile-handler" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4 xmlns="urn:mace:shibboleth:2.0:idp:profile-handler" xmlns:service="urn:mace:shibboleth:2.0:services"
5 elementFormDefault="qualified">
7 <xsd:include schemaLocation="classpath:/schema/shibboleth-2.0-profile-handler.xsd" />
9 <xsd:import namespace="urn:mace:shibboleth:2.0:services"
10 schemaLocation="classpath:/schema/shibboleth-2.0-services.xsd" />
14 This schema specifies the configuration options for Shibboleth IdP profile handlers.
18 <xsd:complexType name="IdPProfileHandlerManager">
20 <xsd:documentation>Definition for the basic Shibboleth profile handler manager service.</xsd:documentation>
23 <xsd:extension base="service:ReloadableServiceType" />
27 <xsd:element name="ProfileHandlerGroup">
29 <xsd:documentation>Root of a profile handler configuration file.</xsd:documentation>
33 <xsd:element name="ErrorHandler" type="ErrorHandlerType" />
34 <xsd:element name="ProfileHandler" type="RequestHandlerType" minOccurs="0" maxOccurs="unbounded" />
35 <xsd:element name="LoginHandler" type="LoginHandlerType" minOccurs="0"
36 maxOccurs="unbounded" />
41 <xsd:complexType name="Status">
43 <xsd:documentation>Basic handler that returns a general status of the IdP.</xsd:documentation>
46 <xsd:extension base="RequestURIMappedProfileHandlerType" />
50 <xsd:complexType name="SAML2SSO">
52 <xsd:documentation>Configuration type for SAML 2 SSO profile handlers.</xsd:documentation>
55 <xsd:extension base="SAML2ProfileHandler">
56 <xsd:attribute name="authenticationManagerPath" type="xsd:string" default="/AuthnEngine">
59 The context relative path to the authentication manager used by this profile handler. This
60 should match the URL pattern given in the web.xml
68 <xsd:complexType name="SAML2AttributeQuery">
70 <xsd:documentation>Configuration type for SAML 2 Attribute Query profile handlers.</xsd:documentation>
73 <xsd:extension base="SAML2ProfileHandler" />
77 <xsd:complexType name="SAML2ArtifactResolution">
79 <xsd:documentation>Configuration type for SAML 2 artifact resolution profile handlers.</xsd:documentation>
82 <xsd:extension base="SAML2ProfileHandler">
83 <xsd:attribute name="artifactMapRef" type="xsd:string" default="shibboleth.ArtifactMap">
86 Reference to SAMLArtifactMap used by handler to resolve artifact strings into artifact objects.
94 <xsd:complexType name="SAML2ProfileHandler" abstract="true">
96 <xsd:documentation>Base type for SAML 2 profile handlers.</xsd:documentation>
99 <xsd:extension base="SAMLProfileHandler" />
100 </xsd:complexContent>
103 <xsd:complexType name="ShibbolethSSO">
105 <xsd:documentation>Configuration type for Shibboleth 1 SSO profile handlers.</xsd:documentation>
108 <xsd:extension base="SAML1ProfileHandler">
109 <xsd:attribute name="authenticationManagerPath" type="xsd:string" default="/AuthnEngine">
112 The context relative path to the authentication manager used by this profile handler. This
113 should match the URL pattern given in the web.xml
118 </xsd:complexContent>
121 <xsd:complexType name="SAML1AttributeQuery">
123 <xsd:documentation>Configuration type for SAML 1 Attribute Query profile handlers.</xsd:documentation>
126 <xsd:extension base="SAML1ProfileHandler" />
127 </xsd:complexContent>
130 <xsd:complexType name="SAML1ArtifactResolution">
132 <xsd:documentation>Configuration type for SAML 1 artifact resolution profile handlers.</xsd:documentation>
135 <xsd:extension base="SAML1ProfileHandler">
136 <xsd:attribute name="artifactMapRef" type="xsd:string" default="shibboleth.ArtifactMap">
139 Reference to SAMLArtifactMap used by handler to resolve artifact strings into artifact objects.
144 </xsd:complexContent>
147 <xsd:complexType name="SAML1ProfileHandler" abstract="true">
149 <xsd:documentation>Base type for SAML 1 profile handlers.</xsd:documentation>
152 <xsd:extension base="SAMLProfileHandler" />
153 </xsd:complexContent>
156 <xsd:complexType name="SAMLProfileHandler" abstract="true">
158 <xsd:documentation>Base type for Shibboleth IdP SAML profile handlers.</xsd:documentation>
161 <xsd:extension base="IdPProfileHandlerType">
162 <xsd:attribute name="idGeneratorId" type="xsd:string" default="shibboleth.IdGenerator">
165 The component ID of a generator used to generated things like response and assertion IDs.
167 This setting should not be changed from its default unless the deployer fully understands
168 the inter-relationship between IdP components.
172 <xsd:attribute name="inboundBinding" type="xsd:anyURI" use="required">
175 The SAML message binding used by inbound messages.
179 <xsd:attribute name="outboundBindingEnumeration" >
182 An ordered list of outbound bindings supported by this profile handler. The order provided
183 establishes the precedence given the bindings such that, from the left to right, the first
184 binding also supported by the relying party will be used.
188 <xsd:list itemType="xsd:anyURI" />
192 </xsd:complexContent>
195 <xsd:complexType name="IdPProfileHandlerType" abstract="true">
197 <xsd:documentation>Base type for IdP profile handlers.</xsd:documentation>
200 <xsd:extension base="ShibbolethProfileHandlerType" />
201 </xsd:complexContent>
204 <xsd:complexType name="RemoteUser">
206 <xsd:extension base="LoginHandlerType">
207 <xsd:attribute name="protectedServletPath" type="xsd:string" default="/Authn/RemoteUser">
210 The servlet context path to the
211 edu.internet2.middleware.shibboleth.idp.authn.provider.RemoteUserAuthServlet instance
212 protected by the container or web server.
217 </xsd:complexContent>
220 <xsd:complexType name="UsernamePassword">
222 <xsd:extension base="LoginHandlerType">
223 <xsd:attribute name="jaasConfigurationLocation" type="xsd:anyURI">
226 Location of the JAAS configuration. If this attribute is used it will usually contain a file
227 URL to a configuration on the local filesystem. However, this attribute need not be used and
228 this information can be set within the VM in any manner supported by the JVM/container
233 <xsd:attribute name="authenticationServletURL" type="xsd:string" default="/Authn/UserPassword">
236 The servlet context path to the
237 edu.internet2.middleware.shibboleth.idp.authn.provider.UsernamePasswordAuthenticationServlet
238 that will authenticate the user.
243 </xsd:complexContent>
246 <xsd:complexType name="LoginHandlerType" abstract="true">
248 <xsd:documentation>Base type for authentication handler types.</xsd:documentation>
251 <xsd:element name="AuthenticationMethod" type="xsd:string" maxOccurs="unbounded">
254 The authentication methods supported by this handler. In SAML these methods represent the SAML 2
255 authentication contexts class and declaration reference URIs.
260 <xsd:attribute name="authenticationDuration" type="xsd:positiveInteger" default="30">
263 The length of time, in minutes, that an authentication performed by this handler should be
264 considered active. After which time a user, previously authenticated by this handler, must
265 re-authenticate in order to assert the authentication method again.