1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package org.opensaml.samlext.saml2delrestrict.impl;
22
23 import org.opensaml.common.impl.AbstractSAMLObjectBuilder;
24 import org.opensaml.samlext.saml2delrestrict.DelegationRestrictionType;
25
26
27
28
29 public class DelegationRestrictionTypeBuilder extends AbstractSAMLObjectBuilder<DelegationRestrictionType> {
30
31
32
33
34 public DelegationRestrictionTypeBuilder() {
35
36 }
37
38
39 public DelegationRestrictionType buildObject() {
40 return buildObject(DelegationRestrictionType.DEFAULT_ELEMENT_NAME, DelegationRestrictionType.TYPE_NAME);
41 }
42
43
44 public DelegationRestrictionType buildObject(String namespaceURI, String localName, String namespacePrefix) {
45 return new DelegationRestrictionTypeImpl(namespaceURI, localName, namespacePrefix);
46 }
47
48 }