1 |
|
|
2 |
|
package org.kuali.student.security.wssecurity.secext.dto; |
3 |
|
|
4 |
|
import javax.xml.bind.annotation.XmlAccessType; |
5 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
6 |
|
import javax.xml.bind.annotation.XmlAttribute; |
7 |
|
import javax.xml.bind.annotation.XmlSchemaType; |
8 |
|
import javax.xml.bind.annotation.XmlSeeAlso; |
9 |
|
import javax.xml.bind.annotation.XmlType; |
10 |
|
|
11 |
|
|
12 |
|
|
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 = "EncodedString") |
34 |
|
@XmlSeeAlso({ |
35 |
|
BinarySecurityTokenType.class, |
36 |
|
KeyIdentifierType.class |
37 |
|
}) |
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
38 |
|
public class EncodedString |
39 |
|
extends AttributedString |
40 |
|
{ |
41 |
|
|
42 |
|
@XmlAttribute(name = "EncodingType") |
43 |
|
@XmlSchemaType(name = "anyURI") |
44 |
|
protected String encodingType; |
45 |
|
|
46 |
|
|
47 |
|
|
48 |
|
|
49 |
|
@return |
50 |
|
|
51 |
|
@link |
52 |
|
|
53 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
54 |
0
|
public String getEncodingType() {... |
55 |
0
|
return encodingType; |
56 |
|
} |
57 |
|
|
58 |
|
|
59 |
|
|
60 |
|
|
61 |
|
@param |
62 |
|
|
63 |
|
@link |
64 |
|
|
65 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
66 |
0
|
public void setEncodingType(String value) {... |
67 |
0
|
this.encodingType = value; |
68 |
|
} |
69 |
|
|
70 |
|
} |