KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > xml > ws > security > impl > bindings > EncodedString


1 //
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b26-ea3
3
// See <a HREF="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4
// Any modifications to this file will be lost upon recompilation of the source schema.
5
// Generated on: 2006.02.24 at 05:55:09 PM PST
6
//
7

8
9 package com.sun.xml.ws.security.impl.bindings;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlAttribute;
14 import javax.xml.bind.annotation.XmlType;
15 import com.sun.xml.ws.security.impl.bindings.AttributedString;
16 import com.sun.xml.ws.security.impl.bindings.EncodedString;
17
18
19 /**
20  * This type is used for elements containing stringified binary data.
21  *
22  * <p>Java class for EncodedString complex type.
23  *
24  * <p>The following schema fragment specifies the expected content contained within this class.
25  *
26  * <pre>
27  * &lt;complexType name="EncodedString">
28  * &lt;simpleContent>
29  * &lt;extension base="&lt;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd>AttributedString">
30  * &lt;attribute name="EncodingType" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
31  * &lt;/extension>
32  * &lt;/simpleContent>
33  * &lt;/complexType>
34  * </pre>
35  *
36  *
37  */

38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "EncodedString")
40 public class EncodedString
41     extends AttributedString
42 {
43
44     @XmlAttribute(name = "EncodingType")
45     protected String JavaDoc encodingType;
46
47     /**
48      * Gets the value of the encodingType property.
49      *
50      * @return
51      * possible object is
52      * {@link String }
53      *
54      */

55     public String JavaDoc getEncodingType() {
56         return encodingType;
57     }
58
59     /**
60      * Sets the value of the encodingType property.
61      *
62      * @param value
63      * allowed object is
64      * {@link String }
65      *
66      */

67     public void setEncodingType(String JavaDoc value) {
68         this.encodingType = value;
69     }
70
71 }
72
Popular Tags