1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.opensaml.samlext.saml2mdquery.impl;
18
19 import org.opensaml.common.impl.AbstractSAMLObjectBuilder;
20 import org.opensaml.common.xml.SAMLConstants;
21 import org.opensaml.samlext.saml2mdquery.AuthzDecisionQueryDescriptorType;
22
23
24
25
26 public class AuthzDecisionQueryDescriptorTypeBuilder extends AbstractSAMLObjectBuilder<AuthzDecisionQueryDescriptorType> {
27
28
29 public AuthzDecisionQueryDescriptorType buildObject() {
30 return buildObject(SAMLConstants.SAML20MDQUERY_NS, AuthzDecisionQueryDescriptorType.DEFAULT_ELEMENT_LOCAL_NAME,
31 SAMLConstants.SAML20MDQUERY_PREFIX, AuthzDecisionQueryDescriptorType.TYPE_NAME);
32 }
33
34
35 public AuthzDecisionQueryDescriptorType buildObject(String namespaceURI, String localName, String namespacePrefix) {
36 return new AuthzDecisionQueryDescriptorTypeImpl(namespaceURI, localName, namespacePrefix);
37 }
38 }