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.PasswordString;17 18 19 /**20 * This type is used for password elements per Section 4.1.21 * 22 * <p>Java class for PasswordString complex type.23 * 24 * <p>The following schema fragment specifies the expected content contained within this class.25 * 26 * <pre>27 * <complexType name="PasswordString">28 * <simpleContent>29 * <extension base="<http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd>AttributedString">30 * <attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI" />31 * </extension>32 * </simpleContent>33 * </complexType>34 * </pre>35 * 36 * 37 */38 @XmlAccessorType(XmlAccessType.FIELD)39 @XmlType(name = "PasswordString")40 public class PasswordString41 extends AttributedString42 {43 44 @XmlAttribute(name = "Type")45 protected String type;46 47 /**48 * Gets the value of the type property.49 * 50 * @return51 * possible object is52 * {@link String }53 * 54 */55 public String getType() {56 return type;57 }58 59 /**60 * Sets the value of the type property.61 * 62 * @param value63 * allowed object is64 * {@link String }65 * 66 */67 public void setType(String value) {68 this.type = value;69 }70 71 }72