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.saml2.core.Statement;
23 import org.opensaml.xacml.profile.saml.XACMLAuthzDecisionStatementType;
24
25
26 public class XACMLAuthzDecisionStatementTypeImplBuilder extends
27 AbstractSAMLObjectBuilder<XACMLAuthzDecisionStatementType> {
28
29
30 public XACMLAuthzDecisionStatementTypeImplBuilder() {
31
32 }
33
34
35 public XACMLAuthzDecisionStatementType buildObject() {
36 return buildObject(Statement.DEFAULT_ELEMENT_NAME, XACMLAuthzDecisionStatementType.TYPE_NAME);
37 }
38
39
40 public XACMLAuthzDecisionStatementType buildObject(String namespaceURI, String localName, String namespacePrefix) {
41 return new XACMLAuthzDecisionStatementTypeImpl(namespaceURI, localName, namespacePrefix);
42 }
43 }