001: /*
002: * The contents of this file are subject to the terms
003: * of the Common Development and Distribution License
004: * (the License). You may not use this file except in
005: * compliance with the License.
006: *
007: * You can obtain a copy of the license at
008: * https://glassfish.dev.java.net/public/CDDLv1.0.html.
009: * See the License for the specific language governing
010: * permissions and limitations under the License.
011: *
012: * When distributing Covered Code, include this CDDL
013: * Header Notice in each file and include the License file
014: * at https://glassfish.dev.java.net/public/CDDLv1.0.html.
015: * If applicable, add the following below the CDDL Header,
016: * with the fields enclosed by brackets [] replaced by
017: * you own identifying information:
018: * "Portions Copyrighted [year] [name of copyright owner]"
019: *
020: * Copyright 2006 Sun Microsystems Inc. All Rights Reserved
021: */
022: //
023: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs
024: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
025: // Any modifications to this file will be lost upon recompilation of the source schema.
026: // Generated on: 2006.08.10 at 02:34:36 PM IST
027: //
028:
029: package com.sun.xml.ws.security.soap12;
030:
031: import javax.xml.bind.annotation.XmlAccessType;
032: import javax.xml.bind.annotation.XmlAccessorType;
033: import javax.xml.bind.annotation.XmlAttribute;
034: import javax.xml.bind.annotation.XmlType;
035: import javax.xml.bind.annotation.XmlValue;
036:
037: /**
038: * <p>Java class for reasontext complex type.
039: *
040: * <p>The following schema fragment specifies the expected content contained within this class.
041: *
042: * <pre>
043: * <complexType name="reasontext">
044: * <simpleContent>
045: * <extension base="<http://www.w3.org/2001/XMLSchema>string">
046: * <attribute ref="{http://www.w3.org/XML/1998/namespace}lang use="required""/>
047: * </extension>
048: * </simpleContent>
049: * </complexType>
050: * </pre>
051: *
052: *
053: */
054: @XmlAccessorType(XmlAccessType.FIELD)
055: @XmlType(name="reasontext",propOrder={"value"})
056: public class Reasontext {
057:
058: @XmlValue
059: protected String value;
060: @XmlAttribute(namespace="http://www.w3.org/XML/1998/namespace",required=true)
061: protected String lang;
062:
063: /**
064: * Gets the value of the value property.
065: *
066: * @return
067: * possible object is
068: * {@link String }
069: *
070: */
071: public String getValue() {
072: return value;
073: }
074:
075: /**
076: * Sets the value of the value property.
077: *
078: * @param value
079: * allowed object is
080: * {@link String }
081: *
082: */
083: public void setValue(String value) {
084: this .value = value;
085: }
086:
087: /**
088: * Gets the value of the lang property.
089: *
090: * @return
091: * possible object is
092: * {@link String }
093: *
094: */
095: public String getLang() {
096: return lang;
097: }
098:
099: /**
100: * Sets the value of the lang property.
101: *
102: * @param value
103: * allowed object is
104: * {@link String }
105: *
106: */
107: public void setLang(String value) {
108: this.lang = value;
109: }
110:
111: }
|