Merged trust engines back into a unified version, made metadata roles a "KeyInfoSource".
[shibboleth/cpp-opensaml.git] / saml / saml2 / metadata / Metadata.h
1 /*
2  *  Copyright 2001-2006 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 saml/saml2/metadata/Metadata.h
19  * 
20  * XMLObjects representing the SAML 2.0 Metadata schema
21  */
22
23 #ifndef __saml2_metadata_h__
24 #define __saml2_metadata_h__
25
26 #include <saml/saml2/core/Assertions.h>
27
28 #include <ctime>
29 #include <xmltooling/security/KeyInfoSource.h>
30
31 #define DECL_SAML2MDOBJECTBUILDER(cname) \
32     DECL_XMLOBJECTBUILDER(SAML_API,cname,samlconstants::SAML20MD_NS,samlconstants::SAML20MD_PREFIX)
33
34 namespace opensaml {
35
36     /**
37      * @namespace opensaml::saml2md
38      * SAML 2.0 metadata namespace
39      */
40     namespace saml2md {
41         
42         /**
43          * Base class for metadata objects that feature a cacheDuration attribute.
44          */
45         class SAML_API CacheableSAMLObject : public virtual xmltooling::XMLObject
46         {
47         protected:
48             CacheableSAMLObject() {}
49         public:
50             ~CacheableSAMLObject() {}
51             DECL_DATETIME_ATTRIB(CacheDuration,CACHEDURATION);
52         };
53
54         /**
55          * Base class for metadata objects that feature a validUntil attribute.
56          */
57         class SAML_API TimeBoundSAMLObject : public virtual xmltooling::XMLObject
58         {
59         protected:
60             TimeBoundSAMLObject() {}
61         public:
62             ~TimeBoundSAMLObject() {}
63             DECL_DATETIME_ATTRIB(ValidUntil,VALIDUNTIL);
64             /** Returns true iff the object is valid at the current time. */
65             bool isValid() const {
66                 return time(NULL) <= getValidUntilEpoch();
67             }
68         };
69
70         DECL_XMLOBJECT_SIMPLE(SAML_API,AffiliateMember,ID,SAML 2.0 AffiliateMember element);
71         DECL_XMLOBJECT_SIMPLE(SAML_API,AttributeProfile,ProfileURI,SAML 2.0 AttributeProfile element);
72         DECL_XMLOBJECT_SIMPLE(SAML_API,Company,Name,SAML 2.0 Company element);
73         DECL_XMLOBJECT_SIMPLE(SAML_API,EmailAddress,Address,SAML 2.0 EmailAddress element);
74         DECL_XMLOBJECT_SIMPLE(SAML_API,GivenName,Name,SAML 2.0 GivenName element);
75         DECL_XMLOBJECT_SIMPLE(SAML_API,NameIDFormat,Format,SAML 2.0 NameIDFormat element);
76         DECL_XMLOBJECT_SIMPLE(SAML_API,SurName,Name,SAML 2.0 SurName element);
77         DECL_XMLOBJECT_SIMPLE(SAML_API,TelephoneNumber,Number,SAML 2.0 TelephoneNumber element);
78         
79         DECL_XMLOBJECT_SIMPLE(SAML_API,ActionNamespace,Namespace,SAML 2.0 Metadata Extension ActionNamespace element);
80         DECL_XMLOBJECT_SIMPLE(SAML_API,SourceID,ID,SAML 1.x Metadata Profile SourceID element);
81
82         BEGIN_XMLOBJECT(SAML_API,localizedNameType,xmltooling::XMLObject,SAML 2.0 localizedNameType type);
83             DECL_STRING_ATTRIB(Lang,LANG);
84             /** localizedNameType local name */
85             static const XMLCh TYPE_NAME[];
86         END_XMLOBJECT;
87
88         BEGIN_XMLOBJECT(SAML_API,localizedURIType,xmltooling::XMLObject,SAML 2.0 localizedURIType type);
89             DECL_STRING_ATTRIB(Lang,LANG);
90             /** localizedURIType local name */
91             static const XMLCh TYPE_NAME[];
92         END_XMLOBJECT;
93
94         BEGIN_XMLOBJECT(SAML_API,OrganizationName,localizedNameType,SAML 2.0 OrganizationName element);
95             DECL_SIMPLE_CONTENT(Name);
96         END_XMLOBJECT;
97
98         BEGIN_XMLOBJECT(SAML_API,OrganizationDisplayName,localizedNameType,SAML 2.0 OrganizationDisplayName element);
99             DECL_SIMPLE_CONTENT(Name);
100         END_XMLOBJECT;
101
102         BEGIN_XMLOBJECT(SAML_API,OrganizationURL,localizedURIType,SAML 2.0 OrganizationURL element);
103             DECL_SIMPLE_CONTENT(URL);
104         END_XMLOBJECT;
105         
106         BEGIN_XMLOBJECT(SAML_API,Extensions,xmltooling::ElementProxy,SAML 2.0 Extensions element);
107             /** ExtensionsType local name */
108             static const XMLCh TYPE_NAME[];
109         END_XMLOBJECT;
110
111         BEGIN_XMLOBJECT(SAML_API,Organization,xmltooling::AttributeExtensibleXMLObject,SAML 2.0 Organization element);
112             DECL_TYPED_CHILD(Extensions);
113             DECL_TYPED_CHILDREN(OrganizationName);
114             DECL_TYPED_CHILDREN(OrganizationDisplayName);
115             DECL_TYPED_CHILDREN(OrganizationURL);
116             /** OrganizationType local name */
117             static const XMLCh TYPE_NAME[];
118         END_XMLOBJECT;
119
120         BEGIN_XMLOBJECT(SAML_API,ContactPerson,xmltooling::AttributeExtensibleXMLObject,SAML 2.0 ContactPerson element);
121             DECL_STRING_ATTRIB(ContactType,CONTACTTYPE);
122             DECL_TYPED_CHILD(Extensions);
123             DECL_TYPED_CHILD(Company);
124             DECL_TYPED_CHILD(GivenName);
125             DECL_TYPED_CHILD(SurName);
126             DECL_TYPED_CHILDREN(EmailAddress);
127             DECL_TYPED_CHILDREN(TelephoneNumber);
128             /** ContactType local name */
129             static const XMLCh TYPE_NAME[];
130             /** technical Contact Type */
131             static const XMLCh CONTACT_TECHNICAL[];
132             /** support Contact Type */
133             static const XMLCh CONTACT_SUPPORT[];
134             /** administrative Contact Type */
135             static const XMLCh CONTACT_ADMINISTRATIVE[];
136             /** billing Contact Type */
137             static const XMLCh CONTACT_BILLING[];
138             /** other Contact Type */
139             static const XMLCh CONTACT_OTHER[];
140         END_XMLOBJECT;
141
142         BEGIN_XMLOBJECT(SAML_API,AdditionalMetadataLocation,xmltooling::XMLObject,SAML 2.0 AdditionalMetadataLocation element);
143             DECL_STRING_ATTRIB(Namespace,NAMESPACE);
144             DECL_SIMPLE_CONTENT(Location);
145             /** AdditionalMetadataLocationType local name */
146             static const XMLCh TYPE_NAME[];
147         END_XMLOBJECT;
148
149         BEGIN_XMLOBJECT(SAML_API,KeyDescriptor,xmltooling::XMLObject,SAML 2.0 KeyDescriptor element);
150             DECL_STRING_ATTRIB(Use,USE);
151             DECL_TYPED_FOREIGN_CHILD(KeyInfo,xmlsignature);
152             DECL_TYPED_FOREIGN_CHILDREN(EncryptionMethod,xmlencryption);
153             /** KeyDescriptorType local name */
154             static const XMLCh TYPE_NAME[];
155             /** encryption Key Type */
156             static const XMLCh KEYTYPE_ENCRYPTION[];
157             /** signing Key Type */
158             static const XMLCh KEYTYPE_SIGNING[];
159         END_XMLOBJECT;
160
161         BEGIN_XMLOBJECT5(SAML_API,RoleDescriptor,xmltooling::AttributeExtensibleXMLObject,SignableObject,
162                 CacheableSAMLObject,TimeBoundSAMLObject,xmltooling::KeyInfoSource,
163                 SAML 2.0 RoleDescriptor abstract element);
164             DECL_STRING_ATTRIB(ID,ID);
165             DECL_STRING_ATTRIB(ProtocolSupportEnumeration,PROTOCOLSUPPORTENUMERATION);
166             /** Searches the ProtocolSupportEnumeration attribute for the indicated protocol. */
167             virtual bool hasSupport(const XMLCh* protocol) const=0;
168             DECL_STRING_ATTRIB(ErrorURL,ERRORURL);
169             DECL_INHERITED_TYPED_FOREIGN_CHILD(Signature,xmlsignature);
170             DECL_TYPED_CHILD(Extensions);
171             DECL_TYPED_CHILDREN(KeyDescriptor);
172             DECL_TYPED_CHILD(Organization);
173             DECL_TYPED_CHILDREN(ContactPerson);
174         END_XMLOBJECT;
175
176         BEGIN_XMLOBJECT2(SAML_API,EndpointType,xmltooling::ElementProxy,xmltooling::AttributeExtensibleXMLObject,SAML 2.0 EndpointType type);
177             DECL_STRING_ATTRIB(Binding,BINDING);
178             DECL_STRING_ATTRIB(Location,LOCATION);
179             DECL_STRING_ATTRIB(ResponseLocation,RESPONSELOCATION);
180             /** EndpointType local name */
181             static const XMLCh TYPE_NAME[];
182         END_XMLOBJECT;
183
184         BEGIN_XMLOBJECT(SAML_API,IndexedEndpointType,EndpointType,SAML 2.0 IndexedEndpointType type);
185             DECL_INTEGER_ATTRIB(Index,INDEX);
186             DECL_BOOLEAN_ATTRIB(isDefault,ISDEFAULT,false);
187             /** IndexedEndpointType local name */
188             static const XMLCh TYPE_NAME[];
189         END_XMLOBJECT;
190
191         BEGIN_XMLOBJECT(SAML_API,ArtifactResolutionService,IndexedEndpointType,SAML 2.0 ArtifactResolutionService element);
192         END_XMLOBJECT;
193
194         BEGIN_XMLOBJECT(SAML_API,SingleLogoutService,EndpointType,SAML 2.0 SingleLogoutService element);
195         END_XMLOBJECT;
196
197         BEGIN_XMLOBJECT(SAML_API,ManageNameIDService,EndpointType,SAML 2.0 ManageNameIDService element);
198         END_XMLOBJECT;
199
200         BEGIN_XMLOBJECT(SAML_API,SSODescriptorType,RoleDescriptor,SAML 2.0 SSODescriptorType abstract type);
201             DECL_TYPED_CHILDREN(ArtifactResolutionService);
202             DECL_TYPED_CHILDREN(SingleLogoutService);
203             DECL_TYPED_CHILDREN(ManageNameIDService);
204             DECL_TYPED_CHILDREN(NameIDFormat);
205             /** SSODescriptorType local name */
206             static const XMLCh TYPE_NAME[];
207         END_XMLOBJECT;
208
209         BEGIN_XMLOBJECT(SAML_API,SingleSignOnService,EndpointType,SAML 2.0 SingleSignOnService element);
210         END_XMLOBJECT;
211
212         BEGIN_XMLOBJECT(SAML_API,NameIDMappingService,EndpointType,SAML 2.0 NameIDMappingService element);
213         END_XMLOBJECT;
214
215         BEGIN_XMLOBJECT(SAML_API,AssertionIDRequestService,EndpointType,SAML 2.0 AssertionIDRequestService element);
216         END_XMLOBJECT;
217
218         BEGIN_XMLOBJECT(SAML_API,IDPSSODescriptor,SSODescriptorType,SAML 2.0 IDPSSODescriptor element);
219             DECL_BOOLEAN_ATTRIB(WantAuthnRequestsSigned,WANTAUTHNREQUESTSSIGNED,false);
220             DECL_TYPED_CHILDREN(SingleSignOnService);
221             DECL_TYPED_CHILDREN(NameIDMappingService);
222             DECL_TYPED_CHILDREN(AssertionIDRequestService);
223             DECL_TYPED_CHILDREN(AttributeProfile);
224             DECL_TYPED_FOREIGN_CHILDREN(Attribute,saml2);
225             /** IDPSSODescriptorType local name */
226             static const XMLCh TYPE_NAME[];
227         END_XMLOBJECT;
228
229         BEGIN_XMLOBJECT(SAML_API,ServiceName,localizedNameType,SAML 2.0 ServiceName element);
230             DECL_SIMPLE_CONTENT(Name);
231         END_XMLOBJECT;
232
233         BEGIN_XMLOBJECT(SAML_API,ServiceDescription,localizedNameType,SAML 2.0 ServiceDescription element);
234             DECL_SIMPLE_CONTENT(Description);
235         END_XMLOBJECT;
236
237         BEGIN_XMLOBJECT(SAML_API,RequestedAttribute,saml2::Attribute,SAML 2.0 RequestedAttribute element);
238             DECL_BOOLEAN_ATTRIB(isRequired,ISREQUIRED,false);
239             /** RequestedAttributeType local name */
240             static const XMLCh TYPE_NAME[];
241         END_XMLOBJECT;
242
243         BEGIN_XMLOBJECT(SAML_API,AttributeConsumingService,xmltooling::XMLObject,SAML 2.0 AttributeConsumingService element);
244             DECL_INTEGER_ATTRIB(Index,INDEX);
245             DECL_BOOLEAN_ATTRIB(isDefault,ISDEFAULT,false);
246             DECL_TYPED_CHILDREN(ServiceName);
247             DECL_TYPED_CHILDREN(ServiceDescription);
248             DECL_TYPED_CHILDREN(RequestedAttribute);
249             /** AttributeConsumingServiceType local name */
250             static const XMLCh TYPE_NAME[];
251         END_XMLOBJECT;
252
253         BEGIN_XMLOBJECT(SAML_API,AssertionConsumerService,IndexedEndpointType,SAML 2.0 AssertionConsumerService element);
254         END_XMLOBJECT;
255
256         BEGIN_XMLOBJECT(SAML_API,SPSSODescriptor,SSODescriptorType,SAML 2.0 SPSSODescriptor element);
257             DECL_BOOLEAN_ATTRIB(AuthnRequestsSigned,AUTHNREQUESTSSIGNED,false);
258             DECL_BOOLEAN_ATTRIB(WantAssertionsSigned,WANTASSERTIONSSIGNED,false);
259             DECL_TYPED_CHILDREN(AssertionConsumerService);
260             DECL_TYPED_CHILDREN(AttributeConsumingService);
261             /** SPSSODescriptorType local name */
262             static const XMLCh TYPE_NAME[];
263         END_XMLOBJECT;
264
265         BEGIN_XMLOBJECT(SAML_API,AuthnQueryService,EndpointType,SAML 2.0 AuthnQueryService element);
266         END_XMLOBJECT;
267
268         BEGIN_XMLOBJECT(SAML_API,AuthnAuthorityDescriptor,RoleDescriptor,SAML 2.0 AuthnAuthorityDescriptor element);
269             DECL_TYPED_CHILDREN(AuthnQueryService);
270             DECL_TYPED_CHILDREN(AssertionIDRequestService);
271             DECL_TYPED_CHILDREN(NameIDFormat);
272             /** AuthnAuthorityDescriptorType local name */
273             static const XMLCh TYPE_NAME[];
274         END_XMLOBJECT;
275
276         BEGIN_XMLOBJECT(SAML_API,AuthzService,EndpointType,SAML 2.0 AuthzService element);
277         END_XMLOBJECT;
278
279         BEGIN_XMLOBJECT(SAML_API,PDPDescriptor,RoleDescriptor,SAML 2.0 PDPDescriptor element);
280             DECL_TYPED_CHILDREN(AuthzService);
281             DECL_TYPED_CHILDREN(AssertionIDRequestService);
282             DECL_TYPED_CHILDREN(NameIDFormat);
283             /** PDPDescriptorType local name */
284             static const XMLCh TYPE_NAME[];
285         END_XMLOBJECT;
286
287         BEGIN_XMLOBJECT(SAML_API,AttributeService,EndpointType,SAML 2.0 AttributeService element);
288         END_XMLOBJECT;
289
290         BEGIN_XMLOBJECT(SAML_API,AttributeAuthorityDescriptor,RoleDescriptor,SAML 2.0 AttributeAuthorityDescriptor element);
291             DECL_TYPED_CHILDREN(AttributeService);
292             DECL_TYPED_CHILDREN(AssertionIDRequestService);
293             DECL_TYPED_CHILDREN(NameIDFormat);
294             DECL_TYPED_CHILDREN(AttributeProfile);
295             DECL_TYPED_FOREIGN_CHILDREN(Attribute,saml2);
296             /** AttributeAuthorityDescriptorType local name */
297             static const XMLCh TYPE_NAME[];
298         END_XMLOBJECT;
299
300         BEGIN_XMLOBJECT(SAML_API,QueryDescriptorType,RoleDescriptor,SAML 2.0 QueryDescriptorType abstract type);
301             DECL_BOOLEAN_ATTRIB(WantAssertionsSigned,WANTASSERTIONSSIGNED,false);
302             DECL_TYPED_CHILDREN(NameIDFormat);
303             /** QueryDescriptorType local name */
304             static const XMLCh TYPE_NAME[];
305         END_XMLOBJECT;
306
307         BEGIN_XMLOBJECT(SAML_API,AuthnQueryDescriptorType,QueryDescriptorType,SAML 2.0 AuthnQueryDescriptorType extension type);
308             /** AuthnQueryDescriptorType local name */
309             static const XMLCh TYPE_NAME[];
310         END_XMLOBJECT;
311
312         BEGIN_XMLOBJECT(SAML_API,AttributeQueryDescriptorType,QueryDescriptorType,SAML 2.0 AttributeQueryDescriptorType extension type);
313             DECL_TYPED_CHILDREN(AttributeConsumingService);
314             /** AttributeQueryDescriptorType local name */
315             static const XMLCh TYPE_NAME[];
316         END_XMLOBJECT;
317
318         BEGIN_XMLOBJECT(SAML_API,AuthzDecisionQueryDescriptorType,QueryDescriptorType,SAML 2.0 AuthzDecisionQueryDescriptorType extension type);
319             DECL_TYPED_CHILDREN(ActionNamespace);
320             /** AuthzDecisionQueryDescriptorType local name */
321             static const XMLCh TYPE_NAME[];
322         END_XMLOBJECT;
323
324         BEGIN_XMLOBJECT4(SAML_API,AffiliationDescriptor,xmltooling::AttributeExtensibleXMLObject,SignableObject,
325                 CacheableSAMLObject,TimeBoundSAMLObject,SAML 2.0 AffiliationDescriptor element);
326             DECL_STRING_ATTRIB(ID,ID);
327             DECL_STRING_ATTRIB(AffiliationOwnerID,AFFILIATIONOWNERID);
328             DECL_INHERITED_TYPED_FOREIGN_CHILD(Signature,xmlsignature);
329             DECL_TYPED_CHILD(Extensions);
330             DECL_TYPED_CHILDREN(AffiliateMember);
331             DECL_TYPED_CHILDREN(KeyDescriptor);
332             /** AffiliationDescriptorType local name */
333             static const XMLCh TYPE_NAME[];
334         END_XMLOBJECT;
335
336         BEGIN_XMLOBJECT4(SAML_API,EntityDescriptor,xmltooling::AttributeExtensibleXMLObject,SignableObject,
337                 CacheableSAMLObject,TimeBoundSAMLObject,SAML 2.0 EntityDescriptor element);
338             DECL_STRING_ATTRIB(ID,ID);
339             DECL_STRING_ATTRIB(EntityID,ENTITYID);
340             DECL_INHERITED_TYPED_FOREIGN_CHILD(Signature,xmlsignature);
341             DECL_TYPED_CHILD(Extensions);
342             DECL_TYPED_CHILD(AffiliationDescriptor);
343             DECL_TYPED_CHILDREN(RoleDescriptor);
344             DECL_TYPED_CHILDREN(IDPSSODescriptor);
345             DECL_TYPED_CHILDREN(SPSSODescriptor);
346             DECL_TYPED_CHILDREN(AuthnAuthorityDescriptor);
347             DECL_TYPED_CHILDREN(AttributeAuthorityDescriptor);
348             DECL_TYPED_CHILDREN(PDPDescriptor);
349             DECL_TYPED_CHILDREN(AuthnQueryDescriptorType);
350             DECL_TYPED_CHILDREN(AttributeQueryDescriptorType);
351             DECL_TYPED_CHILDREN(AuthzDecisionQueryDescriptorType);
352             /** Finds an IDP role supporting a given protocol. */
353             virtual const IDPSSODescriptor* getIDPSSODescriptor(const XMLCh* protocol) const=0;
354             /** Finds an SP role supporting a given protocol. */
355             virtual const SPSSODescriptor* getSPSSODescriptor(const XMLCh* protocol) const=0;
356             /** Finds an Authn Authority role supporting a given protocol. */
357             virtual const AuthnAuthorityDescriptor* getAuthnAuthorityDescriptor(const XMLCh* protocol) const=0;
358             /** Finds an Attribute Authority role supporting a given protocol. */
359             virtual const AttributeAuthorityDescriptor* getAttributeAuthorityDescriptor(const XMLCh* protocol) const=0;
360             /** Finds a PDP role supporting a given protocol. */
361             virtual const PDPDescriptor* getPDPDescriptor(const XMLCh* protocol) const=0;
362             /** Finds an AuthnQuery role supporting a given protocol. */
363             virtual const AuthnQueryDescriptorType* getAuthnQueryDescriptorType(const XMLCh* protocol) const=0;
364             /** Finds an AttributeQuery role supporting a given protocol. */
365             virtual const AttributeQueryDescriptorType* getAttributeQueryDescriptorType(const XMLCh* protocol) const=0;
366             /** Finds an AuthzDecisionQuery role supporting a given protocol. */
367             virtual const AuthzDecisionQueryDescriptorType* getAuthzDecisionQueryDescriptorType(const XMLCh* protocol) const=0;
368             /** Finds an extension role supporting a given protocol. */
369             virtual const RoleDescriptor* getRoleDescriptor(const xmltooling::QName& qname, const XMLCh* protocol) const=0;
370             /** EntityDescriptorType local name */
371             static const XMLCh TYPE_NAME[];
372         END_XMLOBJECT;
373
374         BEGIN_XMLOBJECT3(SAML_API,EntitiesDescriptor,SignableObject,CacheableSAMLObject,
375                 TimeBoundSAMLObject,SAML 2.0 EntitiesDescriptor element);
376             DECL_STRING_ATTRIB(ID,ID);
377             DECL_STRING_ATTRIB(Name,NAME);
378             DECL_INHERITED_TYPED_FOREIGN_CHILD(Signature,xmlsignature);
379             DECL_TYPED_CHILD(Extensions);
380             DECL_TYPED_CHILDREN(EntityDescriptor);
381             DECL_TYPED_CHILDREN(EntitiesDescriptor);
382             /** EntitiesDescriptorType local name */
383             static const XMLCh TYPE_NAME[];
384         END_XMLOBJECT;
385
386         DECL_SAML2MDOBJECTBUILDER(AdditionalMetadataLocation);
387         DECL_SAML2MDOBJECTBUILDER(AffiliateMember);
388         DECL_SAML2MDOBJECTBUILDER(AffiliationDescriptor);
389         DECL_SAML2MDOBJECTBUILDER(ArtifactResolutionService);
390         DECL_SAML2MDOBJECTBUILDER(AssertionConsumerService);
391         DECL_SAML2MDOBJECTBUILDER(AssertionIDRequestService);
392         DECL_SAML2MDOBJECTBUILDER(AttributeAuthorityDescriptor);
393         DECL_SAML2MDOBJECTBUILDER(AttributeConsumingService);
394         DECL_SAML2MDOBJECTBUILDER(AttributeProfile);
395         DECL_SAML2MDOBJECTBUILDER(AttributeService);
396         DECL_SAML2MDOBJECTBUILDER(AuthnAuthorityDescriptor);
397         DECL_SAML2MDOBJECTBUILDER(AuthnQueryService);
398         DECL_SAML2MDOBJECTBUILDER(AuthzService);
399         DECL_SAML2MDOBJECTBUILDER(Company);
400         DECL_SAML2MDOBJECTBUILDER(ContactPerson);
401         DECL_SAML2MDOBJECTBUILDER(EmailAddress);
402         DECL_SAML2MDOBJECTBUILDER(EntitiesDescriptor);
403         DECL_SAML2MDOBJECTBUILDER(EntityDescriptor);
404         DECL_SAML2MDOBJECTBUILDER(Extensions);
405         DECL_SAML2MDOBJECTBUILDER(GivenName);
406         DECL_SAML2MDOBJECTBUILDER(IDPSSODescriptor);
407         DECL_SAML2MDOBJECTBUILDER(KeyDescriptor);
408         DECL_SAML2MDOBJECTBUILDER(ManageNameIDService);
409         DECL_SAML2MDOBJECTBUILDER(NameIDFormat);
410         DECL_SAML2MDOBJECTBUILDER(NameIDMappingService);
411         DECL_SAML2MDOBJECTBUILDER(Organization);
412         DECL_SAML2MDOBJECTBUILDER(OrganizationName);
413         DECL_SAML2MDOBJECTBUILDER(OrganizationDisplayName);
414         DECL_SAML2MDOBJECTBUILDER(OrganizationURL);
415         DECL_SAML2MDOBJECTBUILDER(PDPDescriptor);
416         DECL_SAML2MDOBJECTBUILDER(RequestedAttribute);
417         DECL_SAML2MDOBJECTBUILDER(ServiceDescription);
418         DECL_SAML2MDOBJECTBUILDER(ServiceName);
419         DECL_SAML2MDOBJECTBUILDER(SingleLogoutService);
420         DECL_SAML2MDOBJECTBUILDER(SingleSignOnService);
421         DECL_SAML2MDOBJECTBUILDER(SPSSODescriptor);
422         DECL_SAML2MDOBJECTBUILDER(SurName);
423         DECL_SAML2MDOBJECTBUILDER(TelephoneNumber);
424         
425         DECL_XMLOBJECTBUILDER(SAML_API,ActionNamespace,samlconstants::SAML20MD_QUERY_EXT_NS,samlconstants::SAML20MD_QUERY_EXT_PREFIX);
426         DECL_XMLOBJECTBUILDER(SAML_API,SourceID,samlconstants::SAML1MD_NS,samlconstants::SAML1MD_PREFIX);
427
428         /**
429          * Builder for localizedNameType objects.
430          * 
431          * This is customized to force the element name to be specified.
432          */
433         class SAML_API localizedNameTypeBuilder : public xmltooling::XMLObjectBuilder {
434         public:
435             virtual ~localizedNameTypeBuilder() {}
436             /** Builder that allows element/type override. */
437             virtual localizedNameType* buildObject(
438                 const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL, const xmltooling::QName* schemaType=NULL
439                 ) const;
440         
441             /** Singleton builder. */
442             static localizedNameType* buildlocalizedNameType(const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL) {
443                 const localizedNameTypeBuilder* b = dynamic_cast<const localizedNameTypeBuilder*>(
444                     XMLObjectBuilder::getBuilder(xmltooling::QName(samlconstants::SAML20MD_NS,localizedNameType::TYPE_NAME))
445                     );
446                 if (b) {
447                     xmltooling::QName schemaType(samlconstants::SAML20MD_NS,localizedNameType::TYPE_NAME,samlconstants::SAML20MD_PREFIX);
448                     return b->buildObject(nsURI, localName, prefix, &schemaType);
449                 }
450                 throw xmltooling::XMLObjectException("Unable to obtain typed builder for localizedNameType.");
451             }
452         };
453
454         /**
455          * Builder for localizedURIType objects.
456          * 
457          * This is customized to force the element name to be specified.
458          */
459         class SAML_API localizedURITypeBuilder : public xmltooling::XMLObjectBuilder {
460         public:
461             virtual ~localizedURITypeBuilder() {}
462             /** Builder that allows element/type override. */
463             virtual localizedURIType* buildObject(
464                 const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL, const xmltooling::QName* schemaType=NULL
465                 ) const;
466         
467             /** Singleton builder. */
468             static localizedURIType* buildlocalizedURIType(const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL) {
469                 const localizedURITypeBuilder* b = dynamic_cast<const localizedURITypeBuilder*>(
470                     XMLObjectBuilder::getBuilder(xmltooling::QName(samlconstants::SAML20MD_NS,localizedURIType::TYPE_NAME))
471                     );
472                 if (b) {
473                     xmltooling::QName schemaType(samlconstants::SAML20MD_NS,localizedURIType::TYPE_NAME,samlconstants::SAML20MD_PREFIX);
474                     return b->buildObject(nsURI, localName, prefix, &schemaType);
475                 }
476                 throw xmltooling::XMLObjectException("Unable to obtain typed builder for localizedURIType.");
477             }
478         };
479
480         /**
481          * Builder for EndpointType objects.
482          * 
483          * This is customized to force the element name to be specified.
484          */
485         class SAML_API EndpointTypeBuilder : public xmltooling::XMLObjectBuilder {
486         public:
487             virtual ~EndpointTypeBuilder() {}
488             /** Builder that allows element/type override. */
489             virtual EndpointType* buildObject(
490                 const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL, const xmltooling::QName* schemaType=NULL
491                 ) const;
492         
493             /** Singleton builder. */
494             static EndpointType* buildEndpointType(const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL) {
495                 const EndpointTypeBuilder* b = dynamic_cast<const EndpointTypeBuilder*>(
496                     XMLObjectBuilder::getBuilder(xmltooling::QName(samlconstants::SAML20MD_NS,EndpointType::TYPE_NAME))
497                     );
498                 if (b) {
499                     xmltooling::QName schemaType(samlconstants::SAML20MD_NS,EndpointType::TYPE_NAME,samlconstants::SAML20MD_PREFIX);
500                     return b->buildObject(nsURI, localName, prefix, &schemaType);
501                 }
502                 throw xmltooling::XMLObjectException("Unable to obtain typed builder for EndpointType.");
503             }
504         };
505
506         /**
507          * Builder for IndexedEndpointType objects.
508          * 
509          * This is customized to force the element name to be specified.
510          */
511         class SAML_API IndexedEndpointTypeBuilder : public xmltooling::XMLObjectBuilder {
512         public:
513             virtual ~IndexedEndpointTypeBuilder() {}
514             /** Builder that allows element/type override. */
515             virtual IndexedEndpointType* buildObject(
516                 const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL, const xmltooling::QName* schemaType=NULL
517                 ) const;
518         
519             /** Singleton builder. */
520             static IndexedEndpointType* buildIndexedEndpointType(const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL) {
521                 const IndexedEndpointTypeBuilder* b = dynamic_cast<const IndexedEndpointTypeBuilder*>(
522                     XMLObjectBuilder::getBuilder(xmltooling::QName(samlconstants::SAML20MD_NS,IndexedEndpointType::TYPE_NAME))
523                     );
524                 if (b) {
525                     xmltooling::QName schemaType(samlconstants::SAML20MD_NS,IndexedEndpointType::TYPE_NAME,samlconstants::SAML20MD_PREFIX);
526                     return b->buildObject(nsURI, localName, prefix, &schemaType);
527                 }
528                 throw xmltooling::XMLObjectException("Unable to obtain typed builder for IndexedEndpointType.");
529             }
530         };
531
532         /**
533          * Builder for AuthnQueryDescriptorType objects.
534          * 
535          * This is customized to return a RoleDescriptor element with an
536          * xsi:type of AuthnQueryDescriptorType.
537          */
538         class SAML_API AuthnQueryDescriptorTypeBuilder : public xmltooling::XMLObjectBuilder {
539         public:
540             virtual ~AuthnQueryDescriptorTypeBuilder() {}
541             /** Default builder. */
542             virtual AuthnQueryDescriptorType* buildObject() const {
543                 xmltooling::QName schemaType(
544                     samlconstants::SAML20_NS,AuthnQueryDescriptorType::TYPE_NAME,samlconstants::SAML20MD_QUERY_EXT_PREFIX
545                     );
546                 return buildObject(
547                     samlconstants::SAML20_NS,AuthnQueryDescriptorType::LOCAL_NAME,samlconstants::SAML20_PREFIX,&schemaType
548                     );
549             }
550             /** Builder that allows element/type override. */
551             virtual AuthnQueryDescriptorType* buildObject(
552                 const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL, const xmltooling::QName* schemaType=NULL
553                 ) const;
554         
555             /** Singleton builder. */
556             static AuthnQueryDescriptorType* buildAuthnQueryDescriptorType() {
557                 const AuthnQueryDescriptorTypeBuilder* b = dynamic_cast<const AuthnQueryDescriptorTypeBuilder*>(
558                     XMLObjectBuilder::getBuilder(xmltooling::QName(samlconstants::SAML20MD_QUERY_EXT_NS,AuthnQueryDescriptorType::TYPE_NAME))
559                     );
560                 if (b)
561                     return b->buildObject();
562                 throw xmltooling::XMLObjectException("Unable to obtain typed builder for AuthnQueryDescriptorType.");
563             }
564         };
565
566         /**
567          * Builder for AttributeQueryDescriptorType objects.
568          * 
569          * This is customized to return a RoleDescriptor element with an
570          * xsi:type of AttributeQueryDescriptorType.
571          */
572         class SAML_API AttributeQueryDescriptorTypeBuilder : public xmltooling::XMLObjectBuilder {
573         public:
574             virtual ~AttributeQueryDescriptorTypeBuilder() {}
575             /** Default builder. */
576             virtual AttributeQueryDescriptorType* buildObject() const {
577                 xmltooling::QName schemaType(
578                     samlconstants::SAML20_NS,AttributeQueryDescriptorType::TYPE_NAME,samlconstants::SAML20MD_QUERY_EXT_PREFIX
579                     );
580                 return buildObject(
581                     samlconstants::SAML20_NS,AttributeQueryDescriptorType::LOCAL_NAME,samlconstants::SAML20_PREFIX,&schemaType
582                     );
583             }
584             /** Builder that allows element/type override. */
585             virtual AttributeQueryDescriptorType* buildObject(
586                 const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL, const xmltooling::QName* schemaType=NULL
587                 ) const;
588         
589             /** Singleton builder. */
590             static AttributeQueryDescriptorType* buildAttributeQueryDescriptorType() {
591                 const AttributeQueryDescriptorTypeBuilder* b = dynamic_cast<const AttributeQueryDescriptorTypeBuilder*>(
592                     XMLObjectBuilder::getBuilder(xmltooling::QName(samlconstants::SAML20MD_QUERY_EXT_NS,AttributeQueryDescriptorType::TYPE_NAME))
593                     );
594                 if (b)
595                     return b->buildObject();
596                 throw xmltooling::XMLObjectException("Unable to obtain typed builder for AttributeQueryDescriptorType.");
597             }
598         };
599
600         /**
601          * Builder for AuthzDecisionQueryDescriptorType objects.
602          * 
603          * This is customized to return a RoleDescriptor element with an
604          * xsi:type of AuthzDecisionQueryDescriptorType.
605          */
606         class SAML_API AuthzDecisionQueryDescriptorTypeBuilder : public xmltooling::XMLObjectBuilder {
607         public:
608             virtual ~AuthzDecisionQueryDescriptorTypeBuilder() {}
609             /** Default builder. */
610             virtual AuthzDecisionQueryDescriptorType* buildObject() const {
611                 xmltooling::QName schemaType(
612                     samlconstants::SAML20_NS,AuthzDecisionQueryDescriptorType::TYPE_NAME,samlconstants::SAML20MD_QUERY_EXT_PREFIX
613                     );
614                 return buildObject(
615                     samlconstants::SAML20_NS,AuthzDecisionQueryDescriptorType::LOCAL_NAME,samlconstants::SAML20_PREFIX,&schemaType
616                     );
617             }
618             /** Builder that allows element/type override. */
619             virtual AuthzDecisionQueryDescriptorType* buildObject(
620                 const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL, const xmltooling::QName* schemaType=NULL
621                 ) const;
622         
623             /** Singleton builder. */
624             static AuthzDecisionQueryDescriptorType* buildAuthzDecisionQueryDescriptorType() {
625                 const AuthzDecisionQueryDescriptorTypeBuilder* b = dynamic_cast<const AuthzDecisionQueryDescriptorTypeBuilder*>(
626                     XMLObjectBuilder::getBuilder(xmltooling::QName(samlconstants::SAML20MD_QUERY_EXT_NS,AuthzDecisionQueryDescriptorType::TYPE_NAME))
627                     );
628                 if (b)
629                     return b->buildObject();
630                 throw xmltooling::XMLObjectException("Unable to obtain typed builder for AuthzDecisionQueryDescriptorType.");
631             }
632         };
633
634         /**
635          * Registers builders and validators for SAML 2.0 Metadata classes into the runtime.
636          */
637         void SAML_API registerMetadataClasses();
638     };
639 };
640
641 #endif /* __saml2_metadata_h__ */