Subversion Repositories XServices

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 brianR 1
 
2
3
 
4
import javax.xml.bind.annotation.XmlAccessType;
5
import javax.xml.bind.annotation.XmlAccessorType;
6
import javax.xml.bind.annotation.XmlElementRef;
7
import javax.xml.bind.annotation.XmlType;
8
9
 
10
 
11
 * <p>Java class for ExtraValue complex type.
12
 *
13
 * <p>The following schema fragment specifies the expected content contained within this class.
14
 *
15
 * <pre>
16
 * &lt;complexType name="ExtraValue">
17
 *   &lt;complexContent>
18
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19
 *       &lt;sequence>
20
 *         &lt;element name="valueType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21
 *         &lt;element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22
 *       &lt;/sequence>
23
 *     &lt;/restriction>
24
 *   &lt;/complexContent>
25
 * &lt;/complexType>
26
 * </pre>
27
 *
28
 *
29
 */
30
@XmlAccessorType(XmlAccessType.FIELD)
31
@XmlType(name = "ExtraValue", propOrder = {
32
    "valueType",
33
    "value"
34
})
35
public class ExtraValue {
36
37
 
38
    protected JAXBElement<String> valueType;
39
    @XmlElementRef(name = "value", namespace = "urn:aewebservices71", type = JAXBElement.class)
40
    protected JAXBElement<String> value;
41
42
 
43
     * Gets the value of the valueType property.
44
     *
45
     * @return
46
     *     possible object is
47
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
48
     *
49
     */
50
    public JAXBElement<String> getValueType() {
51
        return valueType;
52
    }
53
54
 
55
     * Sets the value of the valueType property.
56
     *
57
     * @param value
58
     *     allowed object is
59
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
60
     *
61
     */
62
    public void setValueType(JAXBElement<String> value) {
63
        this.valueType = ((JAXBElement<String> ) value);
64
    }
65
66
 
67
     * Gets the value of the value property.
68
     *
69
     * @return
70
     *     possible object is
71
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
72
     *
73
     */
74
    public JAXBElement<String> getValue() {
75
        return value;
76
    }
77
78
 
79
     * Sets the value of the value property.
80
     *
81
     * @param value
82
     *     allowed object is
83
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
84
     *
85
     */
86
    public void setValue(JAXBElement<String> value) {
87
        this.value = ((JAXBElement<String> ) value);
88
    }
89
90
 
91