1
2 package org.kuali.student.security.wssecurity.utility.dto;
3
4 import java.util.HashMap;
5 import java.util.Map;
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlAnyAttribute;
9 import javax.xml.bind.annotation.XmlAttribute;
10 import javax.xml.bind.annotation.XmlID;
11 import javax.xml.bind.annotation.XmlSchemaType;
12 import javax.xml.bind.annotation.XmlType;
13 import javax.xml.bind.annotation.XmlValue;
14 import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
15 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
16 import javax.xml.namespace.QName;
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41 @XmlAccessorType(XmlAccessType.FIELD)
42 @XmlType(name = "AttributedURI", propOrder = {
43 "value"
44 })
45 public class AttributedURI {
46
47 @XmlValue
48 @XmlSchemaType(name = "anyURI")
49 protected String value;
50 @XmlAttribute(name = "Id", namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd")
51 @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
52 @XmlID
53 @XmlSchemaType(name = "ID")
54 protected String id;
55 @XmlAnyAttribute
56 private Map<QName, String> otherAttributes = new HashMap<QName, String>();
57
58
59
60
61
62
63
64
65
66 public String getValue() {
67 return value;
68 }
69
70
71
72
73
74
75
76
77
78 public void setValue(String value) {
79 this.value = value;
80 }
81
82
83
84
85
86
87
88
89
90 public String getId() {
91 return id;
92 }
93
94
95
96
97
98
99
100
101
102 public void setId(String value) {
103 this.id = value;
104 }
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120 public Map<QName, String> getOtherAttributes() {
121 return otherAttributes;
122 }
123
124 }