1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.opensaml.saml1.core.impl;
18
19 import java.util.List;
20
21 import javax.xml.namespace.QName;
22
23 import org.opensaml.common.impl.AbstractSAMLObject;
24 import org.opensaml.saml1.core.AuthorityBinding;
25 import org.opensaml.xml.XMLObject;
26
27
28
29
30 public class AuthorityBindingImpl extends AbstractSAMLObject implements AuthorityBinding {
31
32
33 private QName authorityKind;
34
35
36 private String location;
37
38
39 private String binding;
40
41
42
43
44
45
46
47
48 protected AuthorityBindingImpl(String namespaceURI, String elementLocalName, String namespacePrefix) {
49 super(namespaceURI, elementLocalName, namespacePrefix);
50 }
51
52
53 public QName getAuthorityKind() {
54 return authorityKind;
55 }
56
57
58 public void setAuthorityKind(QName authorityKind) {
59 this.authorityKind = prepareForAssignment(this.authorityKind, authorityKind);
60 }
61
62
63 public String getLocation() {
64 return location;
65 }
66
67
68 public void setLocation(String location) {
69 this.location = prepareForAssignment(this.location, location);
70 }
71
72
73 public String getBinding() {
74 return binding;
75 }
76
77
78 public void setBinding(String binding) {
79 this.binding = prepareForAssignment(this.binding, binding);
80 }
81
82
83 public List<XMLObject> getOrderedChildren() {
84
85 return null;
86 }
87 }