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: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs
24: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
25: // Any modifications to this file will be lost upon recompilation of the source schema.
26: // Generated on: 2006.08.10 at 02:34:36 PM IST
27: //
28:
29: package com.sun.xml.ws.security.secext10;
30:
31: import javax.xml.bind.annotation.XmlAccessType;
32: import javax.xml.bind.annotation.XmlAccessorType;
33: import javax.xml.bind.annotation.XmlAttribute;
34: import javax.xml.bind.annotation.XmlType;
35:
36: /**
37: * This type is used for password elements per Section 4.1.
38: *
39: * <p>Java class for PasswordString complex type.
40: *
41: * <p>The following schema fragment specifies the expected content contained within this class.
42: *
43: * <pre>
44: * <complexType name="PasswordString">
45: * <simpleContent>
46: * <extension base="<http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd>AttributedString">
47: * <attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
48: * </extension>
49: * </simpleContent>
50: * </complexType>
51: * </pre>
52: *
53: *
54: */
55: @XmlAccessorType(XmlAccessType.FIELD)
56: @XmlType(name="PasswordString")
57: public class PasswordString extends AttributedString {
58:
59: @XmlAttribute(name="Type")
60: protected String type;
61:
62: /**
63: * Gets the value of the type property.
64: *
65: * @return
66: * possible object is
67: * {@link String }
68: *
69: */
70: public String getType() {
71: return type;
72: }
73:
74: /**
75: * Sets the value of the type property.
76: *
77: * @param value
78: * allowed object is
79: * {@link String }
80: *
81: */
82: public void setType(String value) {
83: this.type = value;
84: }
85:
86: }
|