Subversion Repositories XServices

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 brianR 1
 
2
3
 
4
import java.util.ArrayList;
5
import java.util.List;
6
import javax.xml.bind.JAXBElement;
7
import javax.xml.bind.annotation.XmlAccessType;
8
import javax.xml.bind.annotation.XmlAccessorType;
9
import javax.xml.bind.annotation.XmlElement;
10
import javax.xml.bind.annotation.XmlElementRef;
11
import javax.xml.bind.annotation.XmlRootElement;
12
import javax.xml.bind.annotation.XmlType;
13
14
 
15
 
16
 * <p>Java class for anonymous complex type.
17
 *
18
 * <p>The following schema fragment specifies the expected content contained within this class.
19
 *
20
 * <pre>
21
 * &lt;complexType>
22
 *   &lt;complexContent>
23
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
24
 *       &lt;sequence>
25
 *         &lt;element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/>
26
 *         &lt;element name="projectID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
27
 *         &lt;element name="itemList" type="{urn:aewebservices71}TTItem" maxOccurs="unbounded" minOccurs="0"/>
28
 *         &lt;element name="submitTransID" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
29
 *         &lt;element name="responseOptions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
30
 *       &lt;/sequence>
31
 *     &lt;/restriction>
32
 *   &lt;/complexContent>
33
 * &lt;/complexType>
34
 * </pre>
35
 *
36
 *
37
 */
38
@XmlAccessorType(XmlAccessType.FIELD)
39
@XmlType(name = "", propOrder = {
40
    "auth",
41
    "projectID",
42
    "itemList",
43
    "submitTransID",
44
    "responseOptions"
45
})
46
@XmlRootElement(name = "CreatePrimaryItems")
47
public class CreatePrimaryItems {
48
49
 
50
    protected JAXBElement<Auth> auth;
51
    @XmlElement(required = true)
52
    protected BigInteger projectID;
53
    protected List<TTItem> itemList;
54
    protected BigInteger submitTransID;
55
    @XmlElementRef(name = "responseOptions", namespace = "urn:aewebservices71", type = JAXBElement.class)
56
    protected JAXBElement<String> responseOptions;
57
58
 
59
     * Gets the value of the auth property.
60
     *
61
     * @return
62
     *     possible object is
63
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
64
     *
65
     */
66
    public JAXBElement<Auth> getAuth() {
67
        return auth;
68
    }
69
70
 
71
     * Sets the value of the auth property.
72
     *
73
     * @param value
74
     *     allowed object is
75
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
76
     *
77
     */
78
    public void setAuth(JAXBElement<Auth> value) {
79
        this.auth = ((JAXBElement<Auth> ) value);
80
    }
81
82
 
83
     * Gets the value of the projectID property.
84
     *
85
     * @return
86
     *     possible object is
87
     *     {@link BigInteger }
88
     *
89
     */
90
    public BigInteger getProjectID() {
91
        return projectID;
92
    }
93
94
 
95
     * Sets the value of the projectID property.
96
     *
97
     * @param value
98
     *     allowed object is
99
     *     {@link BigInteger }
100
     *
101
     */
102
    public void setProjectID(BigInteger value) {
103
        this.projectID = value;
104
    }
105
106
 
107
     * Gets the value of the itemList property.
108
     *
109
     * <p>
110
     * This accessor method returns a reference to the live list,
111
     * not a snapshot. Therefore any modification you make to the
112
     * returned list will be present inside the JAXB object.
113
     * This is why there is not a <CODE>set</CODE> method for the itemList property.
114
     *
115
     * <p>
116
     * For example, to add a new item, do as follows:
117
     * <pre>
118
     *    getItemList().add(newItem);
119
     * </pre>
120
     *
121
     *
122
     * <p>
123
     * Objects of the following type(s) are allowed in the list
124
     * {@link TTItem }
125
     *
126
     *
127
     */
128
    public List<TTItem> getItemList() {
129
        if (itemList == null) {
130
            itemList = new ArrayList<TTItem>();
131
        }
132
        return this.itemList;
133
    }
134
135
 
136
     * Gets the value of the submitTransID property.
137
     *
138
     * @return
139
     *     possible object is
140
     *     {@link BigInteger }
141
     *
142
     */
143
    public BigInteger getSubmitTransID() {
144
        return submitTransID;
145
    }
146
147
 
148
     * Sets the value of the submitTransID property.
149
     *
150
     * @param value
151
     *     allowed object is
152
     *     {@link BigInteger }
153
     *
154
     */
155
    public void setSubmitTransID(BigInteger value) {
156
        this.submitTransID = value;
157
    }
158
159
 
160
     * Gets the value of the responseOptions property.
161
     *
162
     * @return
163
     *     possible object is
164
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
165
     *
166
     */
167
    public JAXBElement<String> getResponseOptions() {
168
        return responseOptions;
169
    }
170
171
 
172
     * Sets the value of the responseOptions property.
173
     *
174
     * @param value
175
     *     allowed object is
176
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
177
     *
178
     */
179
    public void setResponseOptions(JAXBElement<String> value) {
180
        this.responseOptions = ((JAXBElement<String> ) value);
181
    }
182
183
 
184