Correct Notify element.
[shibboleth/sp.git] / schemas / shibboleth-2.0-native-sp-config.xsd
1 <?xml version="1.0" encoding="US-ASCII"?>\r
2 <schema targetNamespace="urn:mace:shibboleth:2.0:native:sp:config"\r
3         xmlns="http://www.w3.org/2001/XMLSchema"\r
4         xmlns:conf="urn:mace:shibboleth:2.0:native:sp:config"\r
5         xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion"\r
6         xmlns:samlp="urn:oasis:names:tc:SAML:2.0:protocol"\r
7         xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"\r
8         elementFormDefault="qualified"\r
9         attributeFormDefault="unqualified"\r
10         blockDefault="substitution"\r
11         version="2.0">\r
12 \r
13         <import namespace="urn:oasis:names:tc:SAML:2.0:assertion" schemaLocation="saml-schema-assertion-2.0.xsd"/>\r
14         <import namespace="urn:oasis:names:tc:SAML:2.0:protocol" schemaLocation="saml-schema-protocol-2.0.xsd"/>\r
15         <import namespace="urn:oasis:names:tc:SAML:2.0:metadata" schemaLocation="saml-schema-metadata-2.0.xsd"/>\r
16 \r
17         <annotation>\r
18                 <documentation>\r
19                 2.0 schema for XML-based configuration of Shibboleth Native SP instances.\r
20                 First appearing in Shibboleth 2.0 release.\r
21                 </documentation>\r
22         </annotation>\r
23 \r
24         <simpleType name="string">\r
25                 <restriction base="string">\r
26                         <minLength value="1"/>\r
27                 </restriction>\r
28         </simpleType>\r
29 \r
30         <simpleType name="listOfStrings">\r
31                 <list itemType="conf:string"/>\r
32         </simpleType>\r
33 \r
34         <simpleType name="listOfURIs">\r
35                 <list itemType="anyURI"/>\r
36         </simpleType>\r
37 \r
38         <simpleType name="bindingBoolean">\r
39                 <restriction base="string">\r
40                         <enumeration value="true"/>\r
41                         <enumeration value="false"/>\r
42                         <enumeration value="front"/>\r
43                         <enumeration value="back"/>\r
44                 </restriction>\r
45         </simpleType>\r
46         \r
47         <complexType name="PluggableType">\r
48                 <sequence>\r
49                         <any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>\r
50                 </sequence>\r
51                 <attribute name="type" type="conf:string" use="required"/>\r
52                 <anyAttribute namespace="##any" processContents="lax"/>\r
53         </complexType>\r
54 \r
55         <element name="SPConfig">\r
56                 <complexType>\r
57                         <annotation>\r
58                                 <documentation>Root of configuration</documentation>\r
59                         </annotation>\r
60                         <sequence>\r
61                                 <element ref="conf:Extensions" minOccurs="0"/>\r
62                                 <element ref="conf:OutOfProcess"/>\r
63                                 <element ref="conf:InProcess"/>\r
64                                 <element ref="conf:Applications"/>\r
65                                 <element ref="conf:SecurityPolicies"/>\r
66                         </sequence>\r
67                         <attribute name="logger" type="anyURI"/>\r
68                         <attribute name="clockSkew" type="unsignedInt"/>\r
69                         <anyAttribute namespace="##other" processContents="lax"/>\r
70                 </complexType>\r
71         </element>\r
72 \r
73         <element name="Extensions">\r
74                 <annotation>\r
75                         <documentation>Container for extension libraries and custom configuration</documentation>\r
76                 </annotation>\r
77                 <complexType>\r
78                         <sequence>\r
79                                 <element name="Library" minOccurs="0" maxOccurs="unbounded">\r
80                                         <complexType>\r
81                                                 <sequence>\r
82                                                         <any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>\r
83                                                 </sequence>\r
84                                                 <attribute name="path" type="anyURI" use="required"/>\r
85                                                 <attribute name="fatal" type="boolean" default="true"/>\r
86                                                 <anyAttribute namespace="##any" processContents="lax"/>\r
87                                         </complexType>\r
88                                 </element>\r
89                                 <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>\r
90                         </sequence>\r
91                 </complexType>\r
92         </element>\r
93 \r
94         <element name="StorageService">\r
95                 <annotation>\r
96                         <documentation>References StorageService plugins</documentation>\r
97                 </annotation>\r
98                 <complexType>\r
99                         <complexContent>\r
100                                 <restriction base="conf:PluggableType">\r
101                                         <sequence>\r
102                                                 <any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>\r
103                                         </sequence>\r
104                                         <attribute name="id" type="ID" use="required"/>\r
105                                         <attribute name="cleanupInterval" type="unsignedInt" default="900"/>\r
106                                         <anyAttribute namespace="##any" processContents="lax"/>\r
107                                 </restriction>\r
108                         </complexContent>\r
109                 </complexType>\r
110         </element>\r
111 \r
112         <element name="SessionCache">\r
113                 <annotation>\r
114                         <documentation>References SessionCache plugins</documentation>\r
115                 </annotation>\r
116                 <complexType>\r
117                         <complexContent>\r
118                                 <restriction base="conf:PluggableType">\r
119                                         <sequence>\r
120                                                 <any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>\r
121                                         </sequence>\r
122                                         <attribute name="StorageService" type="IDREF"/>\r
123                                         <attribute name="cacheTimeout" type="unsignedInt" default="28800"/>\r
124                                         <anyAttribute namespace="##any" processContents="lax"/>\r
125                                 </restriction>\r
126                         </complexContent>\r
127                 </complexType>\r
128         </element>\r
129         \r
130         <element name="ReplayCache">\r
131                 <annotation>\r
132                         <documentation>Ties ReplayCache to a custom StorageService</documentation>\r
133                 </annotation>\r
134                 <complexType>\r
135                         <sequence/>\r
136                         <attribute name="StorageService" type="IDREF" use="required"/>\r
137                 </complexType>\r
138         </element>\r
139         \r
140         <element name="ArtifactMap">\r
141                 <annotation>\r
142                         <documentation>Customizes an ArtifactMap</documentation>\r
143                 </annotation>\r
144                 <complexType>\r
145                         <sequence/>\r
146                         <attribute name="StorageService" type="IDREF"/>\r
147                         <attribute name="context" type="conf:string"/>\r
148                         <attribute name="artifactTTL" type="unsignedInt" default="180"/>\r
149                 </complexType>\r
150         </element>\r
151         \r
152         <element name="OutOfProcess">\r
153                 <annotation>\r
154                         <documentation>Container for shibd out-of-process configuration</documentation>\r
155                 </annotation>\r
156                 <complexType>\r
157                         <sequence>\r
158                                 <element ref="conf:Extensions" minOccurs="0"/>\r
159                                 <choice>\r
160                                         <element name="UnixListener">\r
161                                                 <complexType>\r
162                                                         <attribute name="address" type="conf:string" use="required"/>\r
163                                                 </complexType>\r
164                                         </element>\r
165                                         <element name="TCPListener">\r
166                                                 <complexType>\r
167                                                         <attribute name="address" type="conf:string" use="required"/>\r
168                                                         <attribute name="port" type="unsignedInt" use="required"/>\r
169                                                         <attribute name="acl" type="conf:listOfStrings" default="127.0.0.1"/>\r
170                                                 </complexType>\r
171                                         </element>\r
172                                         <element name="Listener" type="conf:PluggableType"/>\r
173                                 </choice>\r
174                                 <element ref="conf:StorageService" minOccurs="0" maxOccurs="unbounded"/>\r
175                                 <element ref="conf:SessionCache" minOccurs="0"/>\r
176                                 <element ref="conf:ReplayCache" minOccurs="0"/>\r
177                                 <element ref="conf:ArtifactMap" minOccurs="0"/>\r
178                                 <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>\r
179                         </sequence>\r
180                         <attribute name="logger" type="anyURI"/>\r
181                         <anyAttribute namespace="##other" processContents="lax"/>\r
182                 </complexType>\r
183         </element>\r
184 \r
185         <element name="InProcess">\r
186                 <annotation>\r
187                         <documentation>\r
188                         Container for configuration of locally integrated or platform-specific\r
189                         features (e.g. web server filters)\r
190                         </documentation>\r
191                 </annotation>\r
192                 <complexType>\r
193                         <sequence>\r
194                                 <element ref="conf:Extensions" minOccurs="0"/>\r
195                                 <element ref="conf:SessionCache" minOccurs="0"/>\r
196                                 <element name="RequestMapper" type="conf:PluggableType"/>\r
197                                 <element name="Implementation" minOccurs="0">\r
198                                         <complexType>\r
199                                                 <sequence>\r
200                                                         <element ref="conf:ISAPI" minOccurs="0"/>\r
201                                                         <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>\r
202                                                 </sequence>\r
203                                         </complexType>\r
204                                 </element>\r
205                                 <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>\r
206                         </sequence>\r
207                         <attribute name="logger" type="anyURI"/>\r
208                         <attribute name="unsetHeaderValue" type="string"/>\r
209                         <attribute name="checkSpoofing" type="boolean"/>\r
210                         <anyAttribute namespace="##other" processContents="lax"/>\r
211                 </complexType>\r
212         </element>\r
213         \r
214         <element name="ISAPI">\r
215                 <complexType>\r
216                         <sequence>\r
217                                 <element name="Site" maxOccurs="unbounded">\r
218                                         <complexType>\r
219                                                 <sequence>\r
220                                                         <element name="Alias" type="string" minOccurs="0" maxOccurs="unbounded"/>\r
221                                                 </sequence>\r
222                                                 <attribute name="id" type="unsignedInt" use="required"/>\r
223                                                 <attribute name="name" type="conf:string" use="required"/>\r
224                                                 <attribute name="port" type="unsignedInt"/>\r
225                                                 <attribute name="sslport" type="unsignedInt"/>\r
226                                                 <attribute name="scheme" type="conf:string"/>\r
227                                         </complexType>\r
228                                 </element>\r
229                                 <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>\r
230                         </sequence>\r
231                         <attribute name="normalizeRequest" type="boolean" default="true"/>\r
232                         <anyAttribute namespace="##other" processContents="lax"/>\r
233                 </complexType>\r
234         </element>\r
235 \r
236         <element name="AccessControl" type="conf:UniOperatorType">\r
237                 <annotation>\r
238                         <documentation>\r
239                         A simple example access policy language extension that supersedes Apache .htaccess\r
240                         </documentation>\r
241                 </annotation>\r
242         </element>\r
243         <element name="OR" type="conf:MultiOperatorType"/>\r
244         <element name="AND" type="conf:MultiOperatorType"/>\r
245         <element name="NOT" type="conf:UniOperatorType"/>\r
246         <complexType name="UniOperatorType">\r
247                 <choice>\r
248                         <element ref="conf:AND"/>\r
249                         <element ref="conf:OR"/>\r
250                         <element ref="conf:NOT"/>\r
251                         <element ref="conf:Rule"/>\r
252                 </choice>\r
253         </complexType>\r
254         <complexType name="MultiOperatorType">\r
255                 <choice minOccurs="2" maxOccurs="unbounded">\r
256                         <element ref="conf:AND"/>\r
257                         <element ref="conf:OR"/>\r
258                         <element ref="conf:NOT"/>\r
259                         <element ref="conf:Rule"/>\r
260                 </choice>\r
261         </complexType>\r
262         <element name="Rule">\r
263                 <complexType>\r
264                         <simpleContent>\r
265                                 <extension base="conf:listOfStrings">\r
266                                         <attribute name="require" type="conf:string" use="required"/>\r
267                                 </extension>\r
268                         </simpleContent>\r
269                 </complexType>\r
270         </element>\r
271         \r
272         <attributeGroup name="ContentSettings">\r
273                 <attribute name="authType" type="conf:string"/>\r
274                 <attribute name="requireSession" type="boolean"/>\r
275                 <attribute name="requireSessionWith" type="conf:string"/>\r
276                 <attribute name="exportAssertion" type="boolean"/>\r
277                 <attribute name="redirectToSSL" type="unsignedInt"/>\r
278                 <attribute name="isPassive" type="boolean"/>\r
279                 <attribute name="forceAuthn" type="boolean"/>\r
280                 <attribute name="authnContextClassRef" type="anyURI"/>\r
281                 <attribute name="authnContextComparison" type="samlp:AuthnContextComparisonType"/>\r
282                 <anyAttribute namespace="##other" processContents="lax"/>\r
283         </attributeGroup>\r
284         <element name="AccessControlProvider" type="conf:PluggableType"/>\r
285         <element name="htaccess" type="conf:PluggableType"/>\r
286 \r
287     <element name="RequestMap">\r
288                 <annotation>\r
289                         <documentation>\r
290                         Built-in request mapping syntax, decomposes URLs into Host/Path/Path/...\r
291                         </documentation>\r
292                 </annotation>\r
293         <complexType>\r
294             <sequence>\r
295                 <choice minOccurs="0">\r
296                         <element ref="conf:htaccess"/>\r
297                                         <element ref="conf:AccessControl"/>\r
298                         <element ref="conf:AccessControlProvider"/>\r
299                     </choice>\r
300                 <element ref="conf:Host" minOccurs="0" maxOccurs="unbounded"/>\r
301             </sequence>\r
302             <attribute name="applicationId" type="conf:string" fixed="default"/>\r
303                 <attributeGroup ref="conf:ContentSettings"/>\r
304         </complexType>\r
305     </element>\r
306 \r
307     <element name="Host">\r
308         <complexType>\r
309                 <sequence>\r
310                 <choice minOccurs="0">\r
311                         <element ref="conf:htaccess"/>\r
312                                         <element ref="conf:AccessControl"/>\r
313                         <element ref="conf:AccessControlProvider"/>\r
314                     </choice>\r
315                         <element ref="conf:Path" minOccurs="0" maxOccurs="unbounded"/>\r
316                 </sequence>\r
317                 <attribute name="scheme">\r
318                             <simpleType>\r
319                                 <restriction base="conf:string">\r
320                                     <enumeration value="http"/>\r
321                                     <enumeration value="https"/>\r
322                                     <enumeration value="ftp"/>\r
323                                     <enumeration value="ldap"/>\r
324                                     <enumeration value="ldaps"/>\r
325                                 </restriction>\r
326                             </simpleType>\r
327                 </attribute>\r
328                 <attribute name="name" type="conf:string" use="required"/>\r
329                 <attribute name="port" type="unsignedInt"/>\r
330                 <attribute name="applicationId" type="conf:string"/>\r
331                 <attributeGroup ref="conf:ContentSettings"/>\r
332         </complexType>\r
333     </element>\r
334 \r
335     <element name="Path">\r
336         <complexType>\r
337                 <sequence>\r
338                 <choice minOccurs="0">\r
339                         <element ref="conf:htaccess"/>\r
340                                         <element ref="conf:AccessControl"/>\r
341                         <element ref="conf:AccessControlProvider"/>\r
342                     </choice>\r
343                         <element ref="conf:Path" minOccurs="0" maxOccurs="unbounded"/>\r
344                 </sequence>\r
345                 <attribute name="name" type="conf:string" use="required"/>\r
346                 <attribute name="applicationId" type="conf:string"/>\r
347                 <attributeGroup ref="conf:ContentSettings"/>\r
348         </complexType>\r
349     </element>\r
350         \r
351         <element name="Applications">\r
352                 <annotation>\r
353                         <documentation>Container for global settings and application-specific overrides</documentation>\r
354                 </annotation>\r
355                 <complexType>\r
356                         <sequence>\r
357                                 <element ref="conf:Sessions"/>\r
358                                 <element ref="conf:Errors" minOccurs="0"/>\r
359                                 <element ref="conf:DefaultRelyingParty"/>\r
360                                 <element ref="conf:Notify" minOccurs="0" maxOccurs="unbounded"/>\r
361                                 <element ref="saml:Audience" minOccurs="0" maxOccurs="unbounded"/>\r
362                 <element name="MetadataProvider" type="conf:PluggableType"/>\r
363                                 <element name="TrustEngine" type="conf:PluggableType"/>\r
364                                 <element name="AttributeExtractor" type="conf:PluggableType" minOccurs="0"/>\r
365                                 <element name="AttributeResolver" type="conf:PluggableType" minOccurs="0"/>\r
366                                 <element name="AttributeFilter" type="conf:PluggableType" minOccurs="0"/>\r
367                                 <element name="CredentialResolver" type="conf:PluggableType" minOccurs="0"/>\r
368                                 <element ref="conf:Application" minOccurs="0" maxOccurs="unbounded"/>\r
369                         </sequence>\r
370                         <attribute name="id" type="conf:string" fixed="default"/>\r
371                         <attribute name="entityID" type="anyURI" use="required"/>\r
372                         <attribute name="policyId" type="conf:string" use="required"/>\r
373                         <attributeGroup ref="conf:ApplicationGroup"/>\r
374                         <anyAttribute namespace="##other" processContents="lax"/>\r
375                 </complexType>\r
376         </element>\r
377         \r
378         <element name="Application">\r
379                 <annotation>\r
380                         <documentation>Container for application-specific overrides</documentation>\r
381                 </annotation>\r
382                 <complexType>\r
383                         <sequence>\r
384                                 <element ref="conf:Sessions" minOccurs="0"/>\r
385                                 <element ref="conf:Errors" minOccurs="0"/>\r
386                                 <element ref="conf:DefaultRelyingParty" minOccurs="0"/>\r
387                                 <element ref="conf:Notify" minOccurs="0" maxOccurs="unbounded"/>\r
388                                 <element ref="saml:Audience" minOccurs="0" maxOccurs="unbounded"/>\r
389                                 <element name="MetadataProvider" type="conf:PluggableType" minOccurs="0"/>\r
390                                 <element name="TrustEngine" type="conf:PluggableType" minOccurs="0"/>\r
391                                 <element name="AttributeExtractor" type="conf:PluggableType" minOccurs="0"/>\r
392                                 <element name="AttributeResolver" type="conf:PluggableType" minOccurs="0"/>\r
393                                 <element name="AttributeFilter" type="conf:PluggableType" minOccurs="0"/>\r
394                                 <element name="CredentialResolver" type="conf:PluggableType" minOccurs="0"/>\r
395                         </sequence>\r
396                         <attribute name="id" type="conf:string" use="required"/>\r
397                         <attribute name="entityID" type="anyURI"/>\r
398                         <attribute name="policyId" type="conf:string"/>\r
399                         <attributeGroup ref="conf:ApplicationGroup"/>\r
400                         <anyAttribute namespace="##other" processContents="lax"/>\r
401                 </complexType>\r
402         </element>\r
403 \r
404         <attributeGroup name="ApplicationGroup">\r
405                 <attribute name="homeURL" type="anyURI" default="/"/>\r
406                 <attribute name="REMOTE_USER" type="conf:listOfStrings"/>\r
407                 <attribute name="unsetHeaders" type="conf:listOfStrings"/>\r
408                 <attribute name="redirectErrors" type="anyURI"/>\r
409                 <attribute name="localLogout" type="anyURI"/>\r
410                 <attribute name="globalLogout" type="anyURI"/>\r
411         </attributeGroup>\r
412                 \r
413         <element name="Sessions">\r
414                 <annotation>\r
415                         <documentation>Container for specifying protocol handlers and session policy</documentation>\r
416                 </annotation>\r
417                 <complexType>\r
418                         <choice minOccurs="0" maxOccurs="unbounded">\r
419                                 <element ref="conf:SessionInitiator"/>\r
420                                 <element ref="conf:LogoutInitiator"/>\r
421                                 <element ref="md:AssertionConsumerService"/>\r
422                                 <element ref="md:ArtifactResolutionService"/>\r
423                                 <element ref="md:SingleLogoutService"/>\r
424                                 <element ref="md:ManageNameIDService"/>\r
425                                 <element name="Handler">\r
426                                         <complexType>\r
427                                                 <complexContent>\r
428                                                         <restriction base="conf:PluggableType">\r
429                                                                 <sequence>\r
430                                                                         <any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>\r
431                                                                 </sequence>\r
432                                                                 <attribute name="Location" type="anyURI" use="required"/>\r
433                                                         </restriction>\r
434                                                 </complexContent>\r
435                                         </complexType>\r
436                                 </element>\r
437                         </choice>\r
438                         <attribute name="handlerURL" type="anyURI"/>\r
439                         <attribute name="handlerSSL" type="boolean" default="true"/>\r
440                         <attribute name="exportLocation" type="conf:string"/>\r
441                         <attribute name="exportACL" type="conf:listOfStrings" default="127.0.0.1"/>\r
442                         <attribute name="cookieName" type="conf:string"/>\r
443                         <attribute name="cookieProps" type="conf:string"/>\r
444                         <attribute name="idpHistory" type="boolean" default="true"/>\r
445                         <attribute name="idpHistoryDays" type="unsignedInt"/>\r
446                         <attribute name="lifetime" type="unsignedInt" default="28800"/>\r
447                         <attribute name="timeout" type="unsignedInt" default="3600"/>\r
448                         <attribute name="checkAddress" type="boolean" default="true"/>\r
449                         <attribute name="consistentAddress" type="boolean" default="true"/>\r
450                         <anyAttribute namespace="##other" processContents="lax"/>\r
451                 </complexType>\r
452         </element>\r
453 \r
454         <attribute name="policyId" type="conf:string">\r
455                 <annotation>\r
456                         <documentation>Used to reference Policy elements from profile endpoints.</documentation>\r
457                 </annotation>\r
458         </attribute>\r
459 \r
460         <element name="SessionInitiator">\r
461                 <annotation>\r
462                         <documentation>Used to specify handlers that can issue AuthnRequests or perform discovery</documentation>\r
463                 </annotation>\r
464                 <complexType>\r
465                         <complexContent>\r
466                                 <restriction base="conf:PluggableType">\r
467                                         <sequence>\r
468                                                 <any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>\r
469                                         </sequence>\r
470                                         <attribute name="Location" type="anyURI"/>\r
471                                         <attribute name="id" type="conf:string"/>\r
472                                         <attribute name="isDefault" type="boolean"/>\r
473                                         <attribute name="relayState" type="conf:string"/>\r
474                                         <attribute name="entityIDParam" type="conf:string"/>\r
475                                         <attribute name="entityID" type="anyURI"/>\r
476                                         <attribute name="URL" type="anyURI"/>\r
477                                         <attribute name="outgoingBindings" type="conf:listOfURIs"/>\r
478                                         <attribute name="template" type="anyURI"/>\r
479                                         <attribute name="postArtifact" type="boolean"/>\r
480                                         <attribute name="acsByIndex" type="boolean"/>\r
481                                         <attribute name="defaultACSIndex" type="unsignedShort"/>\r
482                                         <anyAttribute namespace="##any" processContents="lax"/>\r
483                                 </restriction>\r
484                         </complexContent>\r
485                 </complexType>\r
486         </element>\r
487 \r
488         <element name="LogoutInitiator">\r
489                 <annotation>\r
490                         <documentation>Used to specify handlers that can issue LogoutRequests</documentation>\r
491                 </annotation>\r
492                 <complexType>\r
493                         <complexContent>\r
494                                 <restriction base="conf:PluggableType">\r
495                                         <sequence>\r
496                                                 <any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>\r
497                                         </sequence>\r
498                                         <attribute name="Location" type="anyURI"/>\r
499                                         <attribute name="outgoingBindings" type="conf:listOfURIs"/>\r
500                                         <attribute name="template" type="anyURI"/>\r
501                                         <attribute name="postArtifact" type="boolean"/>\r
502                                         <anyAttribute namespace="##any" processContents="lax"/>\r
503                                 </restriction>\r
504                         </complexContent>\r
505                 </complexType>\r
506         </element>\r
507         \r
508         <element name="Errors">\r
509                 <annotation>\r
510                         <documentation>Container for error templates and associated details</documentation>\r
511                 </annotation>\r
512                 <complexType>\r
513                         <sequence>\r
514                                 <any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>\r
515                         </sequence>\r
516                         <attribute name="session" type="anyURI" use="required"/>\r
517                         <attribute name="metadata" type="anyURI"/>\r
518                         <attribute name="rm" type="anyURI"/>\r
519                         <attribute name="access" type="anyURI"/>\r
520                         <attribute name="ssl" type="anyURI"/>\r
521                         <attribute name="supportContact" type="conf:string"/>\r
522                         <attribute name="logoLocation" type="anyURI"/>\r
523                         <attribute name="styleSheet" type="anyURI"/>\r
524                         <anyAttribute namespace="##any" processContents="lax"/>\r
525                 </complexType>\r
526         </element>\r
527 \r
528         <element name="Notify">\r
529                 <annotation>\r
530                         <documentation>Used to specify locations to receive application notifications</documentation>\r
531                 </annotation>\r
532                 <complexType>\r
533                         <sequence/>\r
534                         <attribute name="Channel" use="required">\r
535                                 <simpleType>\r
536                                         <restriction base="string">\r
537                                                 <enumeration value="front"/>\r
538                                                 <enumeration value="back"/>\r
539                                         </restriction>\r
540                                 </simpleType>\r
541                         </attribute>\r
542                         <attribute name="Location" type="anyURI" use="required"/>\r
543                         <anyAttribute namespace="##any" processContents="lax"/>\r
544                 </complexType>\r
545         </element>\r
546         \r
547         <element name="DefaultRelyingParty">\r
548                 <annotation>\r
549                         <documentation>Container for specifying security methods to use with particular peers</documentation>\r
550                 </annotation>\r
551                 <complexType>\r
552                         <sequence>\r
553                                 <element name="RelyingParty" minOccurs="0" maxOccurs="unbounded">\r
554                                         <complexType>\r
555                                                 <sequence/>\r
556                                                 <attribute name="Name" type="conf:string" use="required"/>\r
557                                                 <attributeGroup ref="conf:RelyingPartyGroup"/>\r
558                                                 <anyAttribute namespace="##other" processContents="lax"/>\r
559                                         </complexType>\r
560                                 </element>\r
561                         </sequence>\r
562                         <attributeGroup ref="conf:RelyingPartyGroup"/>\r
563                 <anyAttribute namespace="##other" processContents="lax"/>\r
564                 </complexType>\r
565         </element>\r
566         \r
567         <attributeGroup name="RelyingPartyGroup">\r
568                 <attribute name="authType" type="conf:string"/>\r
569                 <attribute name="authUsername" type="conf:string"/>\r
570                 <attribute name="authPassword" type="conf:string"/>\r
571                 <attribute name="signRequests" type="conf:bindingBoolean"/>\r
572                 <attribute name="signResponses" type="conf:bindingBoolean"/>\r
573                 <attribute name="signatureAlg" type="anyURI"/>\r
574                 <attribute name="digestAlg" type="anyURI"/>\r
575                 <attribute name="encryptRequests" type="conf:bindingBoolean"/>\r
576                 <attribute name="encryptResponses" type="conf:bindingBoolean"/>\r
577                 <attribute name="encryptionAlg" type="anyURI"/>\r
578                 <attribute name="keyName" type="conf:string"/>\r
579                 <attribute name="artifactEndpointIndex" type="unsignedShort"/>\r
580         </attributeGroup>\r
581         \r
582         <element name="SecurityPolicies">\r
583                 <annotation>\r
584                         <documentation>Container for specifying sets of policy rules to apply to incoming messages</documentation>\r
585                 </annotation>\r
586                 <complexType>\r
587                         <sequence>\r
588                                 <element name="Policy" minOccurs="1" maxOccurs="unbounded">\r
589                                         <annotation>\r
590                                                 <documentation>Specifies a set of SecurityPolicyRule plugins</documentation>\r
591                                         </annotation>\r
592                                         <complexType>\r
593                                                 <sequence>\r
594                                                         <element name="Rule" type="conf:PluggableType" minOccurs="1" maxOccurs="unbounded"/>\r
595                                                 </sequence>\r
596                                                 <attribute name="id" type="conf:string" use="required"/>\r
597                                                 <attribute name="validate" type="boolean" default="false"/>\r
598                                                 <attribute name="signedAssertions" type="boolean" default="false"/>\r
599                                                 <attribute name="requireConfidentiality" type="boolean" default="true"/>\r
600                                                 <attribute name="requireTransportAuth" type="boolean" default="true"/>\r
601                                                 <attribute name="chunkedEncoding" type="boolean" default="true"/>\r
602                                                 <attribute name="connectTimeout" type="unsignedShort" default="15"/>\r
603                                                 <attribute name="timeout" type="unsignedShort" default="30"/>\r
604                                                 <anyAttribute namespace="##any" processContents="lax"/>\r
605                                         </complexType>\r
606                                 </element>\r
607                         </sequence>\r
608                 </complexType>\r
609         </element>\r
610         \r
611 </schema>\r