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 * This type is used for elements containing stringified binary data.
14 *
15 * <p>Java class for EncodedString complex type.
16 *
17 * <p>The following schema fragment specifies the expected content contained within this class.
18 *
19 * <pre>
20 * <complexType name="EncodedString">
21 * <simpleContent>
22 * <extension base="<http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd>AttributedString">
23 * <attribute name="EncodingType" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
24 * <anyAttribute processContents='lax' namespace='##other'/>
25 * </extension>
26 * </simpleContent>
27 * </complexType>
28 * </pre>
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 * Gets the value of the encodingType property.
48 *
49 * @return
50 * possible object is
51 * {@link String }
52 *
53 */
54 public String getEncodingType() {
55 return encodingType;
56 }
57
58 /**
59 * Sets the value of the encodingType property.
60 *
61 * @param value
62 * allowed object is
63 * {@link String }
64 *
65 */
66 public void setEncodingType(String value) {
67 this.encodingType = value;
68 }
69
70 }