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.XmlElement;
034: import javax.xml.bind.annotation.XmlType;
035: import javax.xml.namespace.QName;
036:
037: /**
038: * <p>Java class for subcode complex type.
039: *
040: * <p>The following schema fragment specifies the expected content contained within this class.
041: *
042: * <pre>
043: * <complexType name="subcode">
044: * <complexContent>
045: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
046: * <sequence>
047: * <element name="Value" type="{http://www.w3.org/2001/XMLSchema}QName"/>
048: * <element name="Subcode" type="{http://www.w3.org/2003/05/soap-envelope}subcode" minOccurs="0"/>
049: * </sequence>
050: * </restriction>
051: * </complexContent>
052: * </complexType>
053: * </pre>
054: *
055: *
056: */
057: @XmlAccessorType(XmlAccessType.FIELD)
058: @XmlType(name="subcode",propOrder={"value","subcode"})
059: public class Subcode {
060:
061: @XmlElement(name="Value",required=true)
062: protected QName value;
063: @XmlElement(name="Subcode")
064: protected Subcode subcode;
065:
066: /**
067: * Gets the value of the value property.
068: *
069: * @return
070: * possible object is
071: * {@link QName }
072: *
073: */
074: public QName getValue() {
075: return value;
076: }
077:
078: /**
079: * Sets the value of the value property.
080: *
081: * @param value
082: * allowed object is
083: * {@link QName }
084: *
085: */
086: public void setValue(QName value) {
087: this .value = value;
088: }
089:
090: /**
091: * Gets the value of the subcode property.
092: *
093: * @return
094: * possible object is
095: * {@link Subcode }
096: *
097: */
098: public Subcode getSubcode() {
099: return subcode;
100: }
101:
102: /**
103: * Sets the value of the subcode property.
104: *
105: * @param value
106: * allowed object is
107: * {@link Subcode }
108: *
109: */
110: public void setSubcode(Subcode value) {
111: this.subcode = value;
112: }
113:
114: }
|