1 <?xml version="1.0" encoding="UTF-8"?>
3 targetNamespace="urn:mace:shibboleth:idp:config:1.0"
4 xmlns:xs="http://www.w3.org/2001/XMLSchema"
5 xmlns:credentials="urn:mace:shibboleth:credentials:1.0"
6 xmlns:namemapper="urn:mace:shibboleth:namemapper:1.0"
7 xmlns:idp="urn:mace:shibboleth:idp:config:1.0"
8 elementFormDefault="qualified"
9 attributeFormDefault="unqualified">
11 <xs:import namespace="urn:mace:shibboleth:credentials:1.0" schemaLocation="credentials.xsd"/>
12 <xs:import namespace="urn:mace:shibboleth:namemapper:1.0" schemaLocation="namemapper.xsd"/>
14 <xs:element name="IdPConfig" type="idp:ShibbolethOriginConfig"/>
16 <xs:simpleType name="LevelType">
17 <xs:restriction base="xs:string">
18 <xs:enumeration value="OFF"/>
19 <xs:enumeration value="FATAL"/>
20 <xs:enumeration value="ERROR"/>
21 <xs:enumeration value="WARN"/>
22 <xs:enumeration value="INFO"/>
23 <xs:enumeration value="DEBUG"/>
27 <xs:complexType name="LogWithLevels">
28 <xs:attribute name="location" type="xs:anyURI" use="required" />
29 <xs:attribute name="level" type="idp:LevelType" use="optional" default="WARN" />
32 <xs:complexType name="Log">
33 <xs:attribute name="location" type="xs:anyURI" use="required"/>
36 <xs:simpleType name="Log4JConfigType">
37 <xs:restriction base="xs:string">
38 <xs:enumeration value="properties"/>
39 <xs:enumeration value="xml"/>
43 <xs:complexType name="ShibbolethOriginConfig">
46 <xs:element name="RelyingParty" maxOccurs="unbounded">
48 <xs:sequence minOccurs="0">
49 <xs:element name="HSNameFormat">
51 <xs:attribute name="nameMapping" type="xs:string" use="required"/>
55 <xs:attribute name="name" type="xs:string" use="required"/>
56 <xs:attribute name="providerId" type="xs:anyURI" use="optional"/>
57 <xs:attribute name="signingCredential" type="xs:string" use="optional"/>
58 <xs:attribute name="AAUrl" type="xs:anyURI" use="optional"/>
59 <xs:attribute name="passThruErrors" type="xs:boolean" use="optional"/>
60 <xs:attribute name="defaultAuthMethod" type="xs:string" use="optional"/>
64 <xs:element name="ReleasePolicyEngine" minOccurs="0">
67 <xs:element name="ArpRepository">
70 <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
72 <xs:attribute name="implementation" type="xs:string" use="required"/>
73 <xs:anyAttribute namespace="##any" processContents="lax"/>
80 <xs:element name="Logging" minOccurs="0" maxOccurs="1">
84 <xs:element name="ErrorLog" type="idp:LogWithLevels" minOccurs="0" maxOccurs="1" />
85 <xs:element name="TransactionLog" type="idp:Log" minOccurs="0" maxOccurs="1" />
87 <xs:element name="Log4JConfig">
89 <xs:attribute name="type" type="idp:Log4JConfigType" use="optional" default="properties" />
90 <xs:attribute name="location" type="xs:anyURI" use="required" />
98 <xs:element ref="namemapper:NameMapping" maxOccurs="unbounded"/>
101 <xs:element ref="credentials:Credentials"/>
103 <xs:element name="FederationProvider" minOccurs="0" maxOccurs="unbounded">
106 <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
108 <xs:attribute name="type" type="xs:string" use="required" />
109 <xs:anyAttribute namespace="##any" processContents="lax"/>
114 <xs:attribute name="resolverConfig" type="xs:string" use="optional" default="/conf/resolver.xml"/>
115 <xs:attribute name="AAUrl" type="xs:anyURI" use="optional"/>
116 <xs:attribute name="providerId" type="xs:anyURI" use="required"/>
117 <xs:attribute name="defaultRelyingParty" type="xs:anyURI" use="required"/>
118 <xs:attribute name="defaultAuthMethod" type="xs:string" use="optional" default="urn:oasis:names:tc:SAML:1.0:am:unspecified"/>
119 <xs:attribute name="passThruErrors" type="xs:boolean" use="optional" default="false"/>
120 <xs:attribute name="authHeaderName" type="xs:string" use="optional"/>
121 <xs:attribute name="maxHSThreads" type="xs:integer" use="optional"/>