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  */
25 
26 package com.sun.xml.internal.ws.fault;
27 
28 import javax.xml.bind.annotation.XmlType;
29 import javax.xml.bind.annotation.XmlElement;
30 import javax.xml.bind.annotation.XmlTransient;
31 import javax.xml.bind.annotation.XmlAccessorType;
32 import javax.xml.bind.annotation.XmlAccessType;
33 import javax.xml.namespace.QName;
34 
35 /**
36  * <pre>
37  *  &lt;env:Code>
38  *       &lt;env:Value>env:Sender&lt;/env:Value>
39  *       &lt;env:Subcode>
40  *           &lt;env:Value>m:MessageTimeout1&lt;/env:Value>
41  *           &lt;env:Subcode>
42  *               &lt;env:Value>m:MessageTimeout2&lt;/env:Value>
43  *           &lt;/env:Subcode>
44  *       &lt;/env:Subcode>
45  *  &lt;/env:Code>
46  * </pre>
47  */
48 @XmlAccessorType(XmlAccessType.FIELD)
49 @XmlType(name = "CodeType", namespace = "http://www.w3.org/2003/05/soap-envelope", propOrder = {
50     "Value",
51     "Subcode"
52 })
53 class CodeType {
54     @XmlTransient
55     private static final String ns="http://www.w3.org/2003/05/soap-envelope";
56 
57     /**
58      * mandatory, minOccurs=1
59      */
60     @XmlElement(namespace = ns)
61     private QName Value;
62 
63     /**
64      * optional, minOcccurs=0, maxOccurs="1"
65      */
66     @XmlElement(namespace = ns)
67     private SubcodeType Subcode;
68 
CodeType(QName value)69     CodeType(QName value) {
70         Value = value;
71     }
72 
CodeType()73     CodeType() {
74     }
75 
getValue()76     QName getValue(){
77         return Value;
78     }
79 
getSubcode()80     SubcodeType getSubcode(){
81         return Subcode;
82     }
83 
setSubcode(SubcodeType subcode)84     void setSubcode(SubcodeType subcode) {
85         Subcode = subcode;
86     }
87 }
88