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.JAXBElement;
5
import javax.xml.bind.annotation.XmlAccessType;
6
import javax.xml.bind.annotation.XmlAccessorType;
7
import javax.xml.bind.annotation.XmlElement;
8
import javax.xml.bind.annotation.XmlElementRef;
9
import javax.xml.bind.annotation.XmlRootElement;
10
import javax.xml.bind.annotation.XmlType;
11
12
 
13
 
14
 * <p>Java class for anonymous complex type.
15
 *
16
 * <p>The following schema fragment specifies the expected content contained within this class.
17
 *
18
 * <pre>
19
 * &lt;complexType>
20
 *   &lt;complexContent>
21
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
22
 *       &lt;sequence>
23
 *         &lt;element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/>
24
 *         &lt;element name="projectID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
25
 *         &lt;element name="item" type="{urn:aewebservices71}TTItem" minOccurs="0"/>
26
 *         &lt;element name="submitTransID" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
27
 *         &lt;element name="responseOptions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
28
 *       &lt;/sequence>
29
 *     &lt;/restriction>
30
 *   &lt;/complexContent>
31
 * &lt;/complexType>
32
 * </pre>
33
 *
34
 *
35
 */
36
@XmlAccessorType(XmlAccessType.FIELD)
37
@XmlType(name = "", propOrder = {
38
    "auth",
39
    "projectID",
40
    "item",
41
    "submitTransID",
42
    "responseOptions"
43
})
44
@XmlRootElement(name = "CreatePrimaryItem")
45
public class CreatePrimaryItem {
46
47
 
48
    protected JAXBElement<Auth> auth;
49
    @XmlElement(required = true)
50
    protected BigInteger projectID;
51
    @XmlElementRef(name = "item", namespace = "urn:aewebservices71", type = JAXBElement.class)
52
    protected JAXBElement<TTItem> item;
53
    protected BigInteger submitTransID;
54
    @XmlElementRef(name = "responseOptions", namespace = "urn:aewebservices71", type = JAXBElement.class)
55
    protected JAXBElement<String> responseOptions;
56
57
 
58
     * Gets the value of the auth property.
59
     *
60
     * @return
61
     *     possible object is
62
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
63
     *
64
     */
65
    public JAXBElement<Auth> getAuth() {
66
        return auth;
67
    }
68
69
 
70
     * Sets the value of the auth property.
71
     *
72
     * @param value
73
     *     allowed object is
74
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
75
     *
76
     */
77
    public void setAuth(JAXBElement<Auth> value) {
78
        this.auth = ((JAXBElement<Auth> ) value);
79
    }
80
81
 
82
     * Gets the value of the projectID property.
83
     *
84
     * @return
85
     *     possible object is
86
     *     {@link BigInteger }
87
     *
88
     */
89
    public BigInteger getProjectID() {
90
        return projectID;
91
    }
92
93
 
94
     * Sets the value of the projectID property.
95
     *
96
     * @param value
97
     *     allowed object is
98
     *     {@link BigInteger }
99
     *
100
     */
101
    public void setProjectID(BigInteger value) {
102
        this.projectID = value;
103
    }
104
105
 
106
     * Gets the value of the item property.
107
     *
108
     * @return
109
     *     possible object is
110
     *     {@link JAXBElement }{@code <}{@link TTItem }{@code >}
111
     *
112
     */
113
    public JAXBElement<TTItem> getItem() {
114
        return item;
115
    }
116
117
 
118
     * Sets the value of the item property.
119
     *
120
     * @param value
121
     *     allowed object is
122
     *     {@link JAXBElement }{@code <}{@link TTItem }{@code >}
123
     *
124
     */
125
    public void setItem(JAXBElement<TTItem> value) {
126
        this.item = ((JAXBElement<TTItem> ) value);
127
    }
128
129
 
130
     * Gets the value of the submitTransID property.
131
     *
132
     * @return
133
     *     possible object is
134
     *     {@link BigInteger }
135
     *
136
     */
137
    public BigInteger getSubmitTransID() {
138
        return submitTransID;
139
    }
140
141
 
142
     * Sets the value of the submitTransID property.
143
     *
144
     * @param value
145
     *     allowed object is
146
     *     {@link BigInteger }
147
     *
148
     */
149
    public void setSubmitTransID(BigInteger value) {
150
        this.submitTransID = value;
151
    }
152
153
 
154
     * Gets the value of the responseOptions property.
155
     *
156
     * @return
157
     *     possible object is
158
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
159
     *
160
     */
161
    public JAXBElement<String> getResponseOptions() {
162
        return responseOptions;
163
    }
164
165
 
166
     * Sets the value of the responseOptions property.
167
     *
168
     * @param value
169
     *     allowed object is
170
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
171
     *
172
     */
173
    public void setResponseOptions(JAXBElement<String> value) {
174
        this.responseOptions = ((JAXBElement<String> ) value);
175
    }
176
177
 
178