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 })
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
50
51
52
53
54 public String getEncodingType() {
55 return encodingType;
56 }
57
58
59
60
61
62
63
64
65
66 public void setEncodingType(String value) {
67 this.encodingType = value;
68 }
69
70 }