1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.opensaml.xacml.profile.saml.impl;
20
21 import org.opensaml.common.impl.AbstractSAMLObjectBuilder;
22 import org.opensaml.xacml.XACMLObjectBuilder;
23 import org.opensaml.xacml.profile.saml.XACMLAuthzDecisionQueryType;
24
25
26 public class XACMLAuthzDecisionQueryTypeImplBuilder extends AbstractSAMLObjectBuilder<XACMLAuthzDecisionQueryType>
27 implements XACMLObjectBuilder<XACMLAuthzDecisionQueryType> {
28
29
30 public XACMLAuthzDecisionQueryTypeImplBuilder() {
31
32 }
33
34
35 public XACMLAuthzDecisionQueryType buildObject() {
36 return null;
37 }
38
39
40 public XACMLAuthzDecisionQueryType buildObject(String namespaceURI, String localName, String namespacePrefix) {
41 return new XACMLAuthzDecisionQueryTypeImpl(namespaceURI, localName, namespacePrefix);
42 }
43 }