1 |
|
|
2 |
|
package org.kuali.student.security.addressing.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.XmlType; |
10 |
|
import javax.xml.bind.annotation.XmlValue; |
11 |
|
import javax.xml.namespace.QName; |
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
32 |
|
@XmlType(name = "AttributedQName", propOrder = { |
33 |
|
"value" |
34 |
|
}) |
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 3 |
Complexity Density: 1 |
|
35 |
|
public class AttributedQName { |
36 |
|
|
37 |
|
@XmlValue |
38 |
|
protected QName value; |
39 |
|
@XmlAnyAttribute |
40 |
|
private Map<QName, String> otherAttributes = new HashMap<QName, String>(); |
41 |
|
|
42 |
|
|
43 |
|
|
44 |
|
|
45 |
|
@return |
46 |
|
|
47 |
|
@link |
48 |
|
|
49 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
50 |
0
|
public QName getValue() {... |
51 |
0
|
return value; |
52 |
|
} |
53 |
|
|
54 |
|
|
55 |
|
|
56 |
|
|
57 |
|
@param |
58 |
|
|
59 |
|
@link |
60 |
|
|
61 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
62 |
0
|
public void setValue(QName value) {... |
63 |
0
|
this.value = value; |
64 |
|
} |
65 |
|
|
66 |
|
|
67 |
|
|
68 |
|
|
69 |
|
|
70 |
|
|
71 |
|
|
72 |
|
|
73 |
|
|
74 |
|
|
75 |
|
|
76 |
|
|
77 |
|
@return |
78 |
|
|
79 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
80 |
0
|
public Map<QName, String> getOtherAttributes() {... |
81 |
0
|
return otherAttributes; |
82 |
|
} |
83 |
|
|
84 |
|
} |