Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
BinaryExchangeType |
|
| 1.0;1 |
1 | ||
2 | package org.kuali.student.security.trust.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.XmlSchemaType; | |
11 | import javax.xml.bind.annotation.XmlType; | |
12 | import javax.xml.bind.annotation.XmlValue; | |
13 | import javax.xml.namespace.QName; | |
14 | ||
15 | ||
16 | /** | |
17 | * <p>Java class for BinaryExchangeType complex type. | |
18 | * | |
19 | * <p>The following schema fragment specifies the expected content contained within this class. | |
20 | * | |
21 | * <pre> | |
22 | * <complexType name="BinaryExchangeType"> | |
23 | * <simpleContent> | |
24 | * <extension base="<http://www.w3.org/2001/XMLSchema>string"> | |
25 | * <attribute name="ValueType" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> | |
26 | * <attribute name="EncodingType" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> | |
27 | * <anyAttribute processContents='lax' namespace='##other'/> | |
28 | * </extension> | |
29 | * </simpleContent> | |
30 | * </complexType> | |
31 | * </pre> | |
32 | * | |
33 | * | |
34 | */ | |
35 | @XmlAccessorType(XmlAccessType.FIELD) | |
36 | @XmlType(name = "BinaryExchangeType", propOrder = { | |
37 | "value" | |
38 | }) | |
39 | 0 | public class BinaryExchangeType { |
40 | ||
41 | @XmlValue | |
42 | protected String value; | |
43 | @XmlAttribute(name = "ValueType", required = true) | |
44 | @XmlSchemaType(name = "anyURI") | |
45 | protected String valueType; | |
46 | @XmlAttribute(name = "EncodingType", required = true) | |
47 | @XmlSchemaType(name = "anyURI") | |
48 | protected String encodingType; | |
49 | 0 | @XmlAnyAttribute |
50 | private Map<QName, String> otherAttributes = new HashMap<QName, String>(); | |
51 | ||
52 | /** | |
53 | * Gets the value of the value property. | |
54 | * | |
55 | * @return | |
56 | * possible object is | |
57 | * {@link String } | |
58 | * | |
59 | */ | |
60 | public String getValue() { | |
61 | 0 | return value; |
62 | } | |
63 | ||
64 | /** | |
65 | * Sets the value of the value property. | |
66 | * | |
67 | * @param value | |
68 | * allowed object is | |
69 | * {@link String } | |
70 | * | |
71 | */ | |
72 | public void setValue(String value) { | |
73 | 0 | this.value = value; |
74 | 0 | } |
75 | ||
76 | /** | |
77 | * Gets the value of the valueType property. | |
78 | * | |
79 | * @return | |
80 | * possible object is | |
81 | * {@link String } | |
82 | * | |
83 | */ | |
84 | public String getValueType() { | |
85 | 0 | return valueType; |
86 | } | |
87 | ||
88 | /** | |
89 | * Sets the value of the valueType property. | |
90 | * | |
91 | * @param value | |
92 | * allowed object is | |
93 | * {@link String } | |
94 | * | |
95 | */ | |
96 | public void setValueType(String value) { | |
97 | 0 | this.valueType = value; |
98 | 0 | } |
99 | ||
100 | /** | |
101 | * Gets the value of the encodingType property. | |
102 | * | |
103 | * @return | |
104 | * possible object is | |
105 | * {@link String } | |
106 | * | |
107 | */ | |
108 | public String getEncodingType() { | |
109 | 0 | return encodingType; |
110 | } | |
111 | ||
112 | /** | |
113 | * Sets the value of the encodingType property. | |
114 | * | |
115 | * @param value | |
116 | * allowed object is | |
117 | * {@link String } | |
118 | * | |
119 | */ | |
120 | public void setEncodingType(String value) { | |
121 | 0 | this.encodingType = value; |
122 | 0 | } |
123 | ||
124 | /** | |
125 | * Gets a map that contains attributes that aren't bound to any typed property on this class. | |
126 | * | |
127 | * <p> | |
128 | * the map is keyed by the name of the attribute and | |
129 | * the value is the string value of the attribute. | |
130 | * | |
131 | * the map returned by this method is live, and you can add new attribute | |
132 | * by updating the map directly. Because of this design, there's no setter. | |
133 | * | |
134 | * | |
135 | * @return | |
136 | * always non-null | |
137 | */ | |
138 | public Map<QName, String> getOtherAttributes() { | |
139 | 0 | return otherAttributes; |
140 | } | |
141 | ||
142 | } |