Add code for non-covariant build.
[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 #ifdef HAVE_COVARIANT_RETURNS
438             virtual localizedNameType* buildObject(
439 #else
440             virtual xmltooling::XMLObject* buildObject(
441 #endif
442                 const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL, const xmltooling::QName* schemaType=NULL
443                 ) const;
444         
445             /** Singleton builder. */
446             static localizedNameType* buildlocalizedNameType(const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL) {
447                 const localizedNameTypeBuilder* b = dynamic_cast<const localizedNameTypeBuilder*>(
448                     XMLObjectBuilder::getBuilder(xmltooling::QName(samlconstants::SAML20MD_NS,localizedNameType::TYPE_NAME))
449                     );
450                 if (b) {
451                     xmltooling::QName schemaType(samlconstants::SAML20MD_NS,localizedNameType::TYPE_NAME,samlconstants::SAML20MD_PREFIX);
452 #ifdef HAVE_COVARIANT_RETURNS
453                     return b->buildObject(nsURI, localName, prefix, &schemaType);
454 #else
455                     return dynamic_cast<localizedNameType*>(b->buildObject(nsURI, localName, prefix, &schemaType));
456 #endif
457                 }
458                 throw xmltooling::XMLObjectException("Unable to obtain typed builder for localizedNameType.");
459             }
460         };
461
462         /**
463          * Builder for localizedURIType objects.
464          * 
465          * This is customized to force the element name to be specified.
466          */
467         class SAML_API localizedURITypeBuilder : public xmltooling::XMLObjectBuilder {
468         public:
469             virtual ~localizedURITypeBuilder() {}
470             /** Builder that allows element/type override. */
471 #ifdef HAVE_COVARIANT_RETURNS
472             virtual localizedURIType* buildObject(
473 #else
474             virtual xmltooling::XMLObject* buildObject(
475 #endif
476                 const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL, const xmltooling::QName* schemaType=NULL
477                 ) const;
478         
479             /** Singleton builder. */
480             static localizedURIType* buildlocalizedURIType(const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL) {
481                 const localizedURITypeBuilder* b = dynamic_cast<const localizedURITypeBuilder*>(
482                     XMLObjectBuilder::getBuilder(xmltooling::QName(samlconstants::SAML20MD_NS,localizedURIType::TYPE_NAME))
483                     );
484                 if (b) {
485                     xmltooling::QName schemaType(samlconstants::SAML20MD_NS,localizedURIType::TYPE_NAME,samlconstants::SAML20MD_PREFIX);
486 #ifdef HAVE_COVARIANT_RETURNS
487                     return b->buildObject(nsURI, localName, prefix, &schemaType);
488 #else
489                     return dynamic_cast<localizedURIType*>(b->buildObject(nsURI, localName, prefix, &schemaType));
490 #endif
491                 }
492                 throw xmltooling::XMLObjectException("Unable to obtain typed builder for localizedURIType.");
493             }
494         };
495
496         /**
497          * Builder for EndpointType objects.
498          * 
499          * This is customized to force the element name to be specified.
500          */
501         class SAML_API EndpointTypeBuilder : public xmltooling::XMLObjectBuilder {
502         public:
503             virtual ~EndpointTypeBuilder() {}
504             /** Builder that allows element/type override. */
505 #ifdef HAVE_COVARIANT_RETURNS
506             virtual EndpointType* buildObject(
507 #else
508             virtual xmltooling::XMLObject* buildObject(
509 #endif
510                 const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL, const xmltooling::QName* schemaType=NULL
511                 ) const;
512         
513             /** Singleton builder. */
514             static EndpointType* buildEndpointType(const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL) {
515                 const EndpointTypeBuilder* b = dynamic_cast<const EndpointTypeBuilder*>(
516                     XMLObjectBuilder::getBuilder(xmltooling::QName(samlconstants::SAML20MD_NS,EndpointType::TYPE_NAME))
517                     );
518                 if (b) {
519                     xmltooling::QName schemaType(samlconstants::SAML20MD_NS,EndpointType::TYPE_NAME,samlconstants::SAML20MD_PREFIX);
520 #ifdef HAVE_COVARIANT_RETURNS
521                     return b->buildObject(nsURI, localName, prefix, &schemaType);
522 #else
523                     return dynamic_cast<EndpointType*>(b->buildObject(nsURI, localName, prefix, &schemaType));
524 #endif
525                 }
526                 throw xmltooling::XMLObjectException("Unable to obtain typed builder for EndpointType.");
527             }
528         };
529
530         /**
531          * Builder for IndexedEndpointType objects.
532          * 
533          * This is customized to force the element name to be specified.
534          */
535         class SAML_API IndexedEndpointTypeBuilder : public xmltooling::XMLObjectBuilder {
536         public:
537             virtual ~IndexedEndpointTypeBuilder() {}
538             /** Builder that allows element/type override. */
539 #ifdef HAVE_COVARIANT_RETURNS
540             virtual IndexedEndpointType* buildObject(
541 #else
542             virtual xmltooling::XMLObject* buildObject(
543 #endif
544                 const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL, const xmltooling::QName* schemaType=NULL
545                 ) const;
546         
547             /** Singleton builder. */
548             static IndexedEndpointType* buildIndexedEndpointType(const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL) {
549                 const IndexedEndpointTypeBuilder* b = dynamic_cast<const IndexedEndpointTypeBuilder*>(
550                     XMLObjectBuilder::getBuilder(xmltooling::QName(samlconstants::SAML20MD_NS,IndexedEndpointType::TYPE_NAME))
551                     );
552                 if (b) {
553                     xmltooling::QName schemaType(samlconstants::SAML20MD_NS,IndexedEndpointType::TYPE_NAME,samlconstants::SAML20MD_PREFIX);
554 #ifdef HAVE_COVARIANT_RETURNS
555                     return b->buildObject(nsURI, localName, prefix, &schemaType);
556 #else
557                     return dynamic_cast<IndexedEndpointType*>(b->buildObject(nsURI, localName, prefix, &schemaType));
558 #endif
559                 }
560                 throw xmltooling::XMLObjectException("Unable to obtain typed builder for IndexedEndpointType.");
561             }
562         };
563
564         /**
565          * Builder for AuthnQueryDescriptorType objects.
566          * 
567          * This is customized to return a RoleDescriptor element with an
568          * xsi:type of AuthnQueryDescriptorType.
569          */
570         class SAML_API AuthnQueryDescriptorTypeBuilder : public xmltooling::XMLObjectBuilder {
571         public:
572             virtual ~AuthnQueryDescriptorTypeBuilder() {}
573             /** Default builder. */
574 #ifdef HAVE_COVARIANT_RETURNS
575             virtual AuthnQueryDescriptorType* buildObject() const {
576 #else
577             virtual xmltooling::XMLObject* buildObject() const {
578 #endif
579                 xmltooling::QName schemaType(
580                     samlconstants::SAML20_NS,AuthnQueryDescriptorType::TYPE_NAME,samlconstants::SAML20MD_QUERY_EXT_PREFIX
581                     );
582                 return buildObject(
583                     samlconstants::SAML20_NS,AuthnQueryDescriptorType::LOCAL_NAME,samlconstants::SAML20_PREFIX,&schemaType
584                     );
585             }
586             /** Builder that allows element/type override. */
587 #ifdef HAVE_COVARIANT_RETURNS
588             virtual AuthnQueryDescriptorType* buildObject(
589 #else
590             virtual xmltooling::XMLObject* buildObject(
591 #endif
592                 const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL, const xmltooling::QName* schemaType=NULL
593                 ) const;
594         
595             /** Singleton builder. */
596             static AuthnQueryDescriptorType* buildAuthnQueryDescriptorType() {
597                 const AuthnQueryDescriptorTypeBuilder* b = dynamic_cast<const AuthnQueryDescriptorTypeBuilder*>(
598                     XMLObjectBuilder::getBuilder(xmltooling::QName(samlconstants::SAML20MD_QUERY_EXT_NS,AuthnQueryDescriptorType::TYPE_NAME))
599                     );
600                 if (b) {
601 #ifdef HAVE_COVARIANT_RETURNS
602                     return b->buildObject();
603 #else
604                     return dynamic_cast<AuthnQueryDescriptorType*>(b->buildObject());
605 #endif
606                 }
607                 throw xmltooling::XMLObjectException("Unable to obtain typed builder for AuthnQueryDescriptorType.");
608             }
609         };
610
611         /**
612          * Builder for AttributeQueryDescriptorType objects.
613          * 
614          * This is customized to return a RoleDescriptor element with an
615          * xsi:type of AttributeQueryDescriptorType.
616          */
617         class SAML_API AttributeQueryDescriptorTypeBuilder : public xmltooling::XMLObjectBuilder {
618         public:
619             virtual ~AttributeQueryDescriptorTypeBuilder() {}
620             /** Default builder. */
621 #ifdef HAVE_COVARIANT_RETURNS
622             virtual AttributeQueryDescriptorType* buildObject() const {
623 #else
624             virtual xmltooling::XMLObject* buildObject() const {
625 #endif
626                 xmltooling::QName schemaType(
627                     samlconstants::SAML20_NS,AttributeQueryDescriptorType::TYPE_NAME,samlconstants::SAML20MD_QUERY_EXT_PREFIX
628                     );
629                 return buildObject(
630                     samlconstants::SAML20_NS,AttributeQueryDescriptorType::LOCAL_NAME,samlconstants::SAML20_PREFIX,&schemaType
631                     );
632             }
633             /** Builder that allows element/type override. */
634 #ifdef HAVE_COVARIANT_RETURNS
635             virtual AttributeQueryDescriptorType* buildObject(
636 #else
637             virtual xmltooling::XMLObject* buildObject(
638 #endif
639                 const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL, const xmltooling::QName* schemaType=NULL
640                 ) const;
641         
642             /** Singleton builder. */
643             static AttributeQueryDescriptorType* buildAttributeQueryDescriptorType() {
644                 const AttributeQueryDescriptorTypeBuilder* b = dynamic_cast<const AttributeQueryDescriptorTypeBuilder*>(
645                     XMLObjectBuilder::getBuilder(xmltooling::QName(samlconstants::SAML20MD_QUERY_EXT_NS,AttributeQueryDescriptorType::TYPE_NAME))
646                     );
647                 if (b) {
648 #ifdef HAVE_COVARIANT_RETURNS
649                     return b->buildObject();
650 #else
651                     return dynamic_cast<AttributeQueryDescriptorType*>(b->buildObject());
652 #endif
653                 }
654                 throw xmltooling::XMLObjectException("Unable to obtain typed builder for AttributeQueryDescriptorType.");
655             }
656         };
657
658         /**
659          * Builder for AuthzDecisionQueryDescriptorType objects.
660          * 
661          * This is customized to return a RoleDescriptor element with an
662          * xsi:type of AuthzDecisionQueryDescriptorType.
663          */
664         class SAML_API AuthzDecisionQueryDescriptorTypeBuilder : public xmltooling::XMLObjectBuilder {
665         public:
666             virtual ~AuthzDecisionQueryDescriptorTypeBuilder() {}
667             /** Default builder. */
668 #ifdef HAVE_COVARIANT_RETURNS
669             virtual AuthzDecisionQueryDescriptorType* buildObject() const {
670 #else
671             virtual xmltooling::XMLObject* buildObject() const {
672 #endif
673                 xmltooling::QName schemaType(
674                     samlconstants::SAML20_NS,AuthzDecisionQueryDescriptorType::TYPE_NAME,samlconstants::SAML20MD_QUERY_EXT_PREFIX
675                     );
676                 return buildObject(
677                     samlconstants::SAML20_NS,AuthzDecisionQueryDescriptorType::LOCAL_NAME,samlconstants::SAML20_PREFIX,&schemaType
678                     );
679             }
680             /** Builder that allows element/type override. */
681 #ifdef HAVE_COVARIANT_RETURNS
682             virtual AuthzDecisionQueryDescriptorType* buildObject(
683 #else
684             virtual xmltooling::XMLObject* buildObject(
685 #endif
686                 const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL, const xmltooling::QName* schemaType=NULL
687                 ) const;
688         
689             /** Singleton builder. */
690             static AuthzDecisionQueryDescriptorType* buildAuthzDecisionQueryDescriptorType() {
691                 const AuthzDecisionQueryDescriptorTypeBuilder* b = dynamic_cast<const AuthzDecisionQueryDescriptorTypeBuilder*>(
692                     XMLObjectBuilder::getBuilder(xmltooling::QName(samlconstants::SAML20MD_QUERY_EXT_NS,AuthzDecisionQueryDescriptorType::TYPE_NAME))
693                     );
694                 if (b) {
695 #ifdef HAVE_COVARIANT_RETURNS
696                     return b->buildObject();
697 #else
698                     return dynamic_cast<AuthzDecisionQueryDescriptorType*>(b->buildObject());
699 #endif
700                 }
701                 throw xmltooling::XMLObjectException("Unable to obtain typed builder for AuthzDecisionQueryDescriptorType.");
702             }
703         };
704
705         /**
706          * Registers builders and validators for SAML 2.0 Metadata classes into the runtime.
707          */
708         void SAML_API registerMetadataClasses();
709     };
710 };
711
712 #endif /* __saml2_metadata_h__ */