1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package org.opensaml.saml1.core.impl;
22
23 import java.util.List;
24
25 import org.opensaml.common.impl.AbstractSAMLObject;
26 import org.opensaml.saml1.core.AttributeDesignator;
27 import org.opensaml.xml.XMLObject;
28
29
30
31
32 public class AttributeDesignatorImpl extends AbstractSAMLObject implements AttributeDesignator {
33
34
35 private String attributeName;
36
37
38 private String attributeNamespace;
39
40
41
42
43
44
45
46
47 protected AttributeDesignatorImpl(String namespaceURI, String elementLocalName, String namespacePrefix) {
48 super(namespaceURI, elementLocalName, namespacePrefix);
49 }
50
51
52 public String getAttributeName() {
53 return attributeName;
54 }
55
56
57 public void setAttributeName(String attributeName) {
58 this.attributeName = prepareForAssignment(this.attributeName, attributeName);
59 }
60
61
62 public String getAttributeNamespace() {
63 return attributeNamespace;
64 }
65
66
67 public void setAttributeNamespace(String attributeNamespace) {
68 this.attributeNamespace = prepareForAssignment(this.attributeNamespace, attributeNamespace);
69 }
70
71
72 public List<XMLObject> getOrderedChildren() {
73 return null;
74 }
75 }