01: /*
02: * The contents of this file are subject to the terms
03: * of the Common Development and Distribution License
04: * (the License). You may not use this file except in
05: * compliance with the License.
06: *
07: * You can obtain a copy of the license at
08: * https://glassfish.dev.java.net/public/CDDLv1.0.html.
09: * See the License for the specific language governing
10: * permissions and limitations under the License.
11: *
12: * When distributing Covered Code, include this CDDL
13: * Header Notice in each file and include the License file
14: * at https://glassfish.dev.java.net/public/CDDLv1.0.html.
15: * If applicable, add the following below the CDDL Header,
16: * with the fields enclosed by brackets [] replaced by
17: * you own identifying information:
18: * "Portions Copyrighted [year] [name of copyright owner]"
19: *
20: * Copyright 2006 Sun Microsystems Inc. All Rights Reserved
21: */
22:
23: //
24: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs
25: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
26: // Any modifications to this file will be lost upon recompilation of the source schema.
27: // Generated on: 2006.08.10 at 02:34:36 PM IST
28: //
29:
30: package com.sun.xml.ws.security.secext10;
31:
32: import javax.xml.bind.annotation.XmlAccessType;
33: import javax.xml.bind.annotation.XmlAccessorType;
34: import javax.xml.bind.annotation.XmlAttribute;
35: import javax.xml.bind.annotation.XmlType;
36:
37: /**
38: * This type is used for elements containing stringified binary data.
39: *
40: * <p>Java class for EncodedString complex type.
41: *
42: * <p>The following schema fragment specifies the expected content contained within this class.
43: *
44: * <pre>
45: * <complexType name="EncodedString">
46: * <simpleContent>
47: * <extension base="<http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd>AttributedString">
48: * <attribute name="EncodingType" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
49: * </extension>
50: * </simpleContent>
51: * </complexType>
52: * </pre>
53: *
54: *
55: */
56: @XmlAccessorType(XmlAccessType.FIELD)
57: @XmlType(name="EncodedString")
58: public class EncodedString extends AttributedString {
59:
60: @XmlAttribute(name="EncodingType")
61: protected String encodingType;
62:
63: /**
64: * Gets the value of the encodingType property.
65: *
66: * @return
67: * possible object is
68: * {@link String }
69: *
70: */
71: public String getEncodingType() {
72: return encodingType;
73: }
74:
75: /**
76: * Sets the value of the encodingType property.
77: *
78: * @param value
79: * allowed object is
80: * {@link String }
81: *
82: */
83: public void setEncodingType(String value) {
84: this.encodingType = value;
85: }
86:
87: }
|