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