src/share/jaxws_classes/com/sun/xml/internal/ws/fault/SubcodeType.java

Wed, 27 Apr 2016 01:27:09 +0800

author
aoqi
date
Wed, 27 Apr 2016 01:27:09 +0800
changeset 0
373ffda63c9a
child 637
9c07ef4934dd
permissions
-rw-r--r--

Initial load
http://hg.openjdk.java.net/jdk8u/jdk8u/jaxws/
changeset: 657:d47a47f961ee
tag: jdk8u25-b17

     1 /*
     2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    26 package com.sun.xml.internal.ws.fault;
    28 import javax.xml.bind.annotation.XmlType;
    29 import javax.xml.bind.annotation.XmlElement;
    30 import javax.xml.bind.annotation.XmlElements;
    31 import javax.xml.bind.annotation.XmlAccessorType;
    32 import javax.xml.bind.annotation.XmlAccessType;
    33 import javax.xml.bind.annotation.XmlTransient;
    34 import javax.xml.namespace.QName;
    36 /**
    37  * <pre>
    38  *      &lt;env:Subcode>
    39  *          &lt;env:Value>m:MessageTimeout1&lt;/env:Value>
    40  *          &lt;env:Subcode>
    41  *              &lt;env:Value>m:MessageTimeout2&lt;/env:Value>
    42  *          &lt;/env:Subcode>
    43  *      &lt;/env:Subcode>
    44  *  </pre>
    45  */
    46 @XmlAccessorType(XmlAccessType.FIELD)
    47 @XmlType(name = "SubcodeType", namespace = "http://www.w3.org/2003/05/soap-envelope", propOrder = {
    48     "Value",
    49     "Subcode"
    50         })
    51 class SubcodeType {
    52     @XmlTransient
    53     private static final String ns="http://www.w3.org/2003/05/soap-envelope";
    54     /**
    55      * mandatory, minOccurs=1
    56      */
    57     @XmlElement(namespace = ns)
    58     private QName Value;
    60     /**
    61      * optional, minOcccurs=0
    62      */
    63     @XmlElements(@XmlElement(namespace = ns))
    64     private SubcodeType Subcode;
    66     public SubcodeType(QName value) {
    67         Value = value;
    68     }
    70     public SubcodeType() {
    71     }
    73     QName getValue() {
    74         return Value;
    75     }
    77     SubcodeType getSubcode() {
    78         return Subcode;
    79     }
    81     void setSubcode(SubcodeType subcode) {
    82         Subcode = subcode;
    83     }
    84 }

mercurial