1 /**
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19 //
20 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6
21 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
22 // Any modifications to this file will be lost upon recompilation of the source schema.
23 // Generated on: 2014.03.27 at 03:31:20 PM GMT
24 //
25
26
27 package org.apache.wss4j.binding.wss10;
28
29 import jakarta.xml.bind.annotation.XmlAccessType;
30 import jakarta.xml.bind.annotation.XmlAccessorType;
31 import jakarta.xml.bind.annotation.XmlAttribute;
32 import jakarta.xml.bind.annotation.XmlSchemaType;
33 import jakarta.xml.bind.annotation.XmlType;
34
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 * <anyAttribute processContents='lax' namespace='##other'/>
49 * </extension>
50 * </simpleContent>
51 * </complexType>
52 * </pre>
53 *
54 *
55 */
56 @XmlAccessorType(XmlAccessType.FIELD)
57 @XmlType(name = "PasswordString")
58 public class PasswordString
59 extends AttributedString
60 {
61
62 @XmlAttribute(name = "Type")
63 @XmlSchemaType(name = "anyURI")
64 private String type;
65
66 /**
67 * Gets the value of the type property.
68 *
69 * @return
70 * possible object is
71 * {@link String }
72 *
73 */
74 public String getType() {
75 return type;
76 }
77
78 /**
79 * Sets the value of the type property.
80 *
81 * @param value
82 * allowed object is
83 * {@link String }
84 *
85 */
86 public void setType(String value) {
87 this.type = value;
88 }
89
90 }