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.List;
5
import javax.xml.bind.JAXBElement;
6
import javax.xml.bind.annotation.XmlAccessType;
7
import javax.xml.bind.annotation.XmlAccessorType;
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="fullyQualifiedProjectName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25
 *         &lt;element name="itemList" type="{urn:aewebservices71}TTItem" maxOccurs="unbounded" minOccurs="0"/>
26
 *         &lt;element name="submitTransName" type="{http://www.w3.org/2001/XMLSchema}string" 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
    "fullyQualifiedProjectName",
40
    "itemList",
41
    "submitTransName",
42
    "responseOptions"
43
})
44
@XmlRootElement(name = "CreatePrimaryItemsWithName")
45
public class CreatePrimaryItemsWithName {
46
47
 
48
    protected JAXBElement<Auth> auth;
49
    @XmlElementRef(name = "fullyQualifiedProjectName", namespace = "urn:aewebservices71", type = JAXBElement.class)
50
    protected JAXBElement<String> fullyQualifiedProjectName;
51
    protected List<TTItem> itemList;
52
    @XmlElementRef(name = "submitTransName", namespace = "urn:aewebservices71", type = JAXBElement.class)
53
    protected JAXBElement<String> submitTransName;
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 fullyQualifiedProjectName property.
83
     *
84
     * @return
85
     *     possible object is
86
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
87
     *
88
     */
89
    public JAXBElement<String> getFullyQualifiedProjectName() {
90
        return fullyQualifiedProjectName;
91
    }
92
93
 
94
     * Sets the value of the fullyQualifiedProjectName property.
95
     *
96
     * @param value
97
     *     allowed object is
98
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
99
     *
100
     */
101
    public void setFullyQualifiedProjectName(JAXBElement<String> value) {
102
        this.fullyQualifiedProjectName = ((JAXBElement<String> ) value);
103
    }
104
105
 
106
     * Gets the value of the itemList property.
107
     *
108
     * <p>
109
     * This accessor method returns a reference to the live list,
110
     * not a snapshot. Therefore any modification you make to the
111
     * returned list will be present inside the JAXB object.
112
     * This is why there is not a <CODE>set</CODE> method for the itemList property.
113
     *
114
     * <p>
115
     * For example, to add a new item, do as follows:
116
     * <pre>
117
     *    getItemList().add(newItem);
118
     * </pre>
119
     *
120
     *
121
     * <p>
122
     * Objects of the following type(s) are allowed in the list
123
     * {@link TTItem }
124
     *
125
     *
126
     */
127
    public List<TTItem> getItemList() {
128
        if (itemList == null) {
129
            itemList = new ArrayList<TTItem>();
130
        }
131
        return this.itemList;
132
    }
133
134
 
135
     * Gets the value of the submitTransName property.
136
     *
137
     * @return
138
     *     possible object is
139
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
140
     *
141
     */
142
    public JAXBElement<String> getSubmitTransName() {
143
        return submitTransName;
144
    }
145
146
 
147
     * Sets the value of the submitTransName property.
148
     *
149
     * @param value
150
     *     allowed object is
151
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
152
     *
153
     */
154
    public void setSubmitTransName(JAXBElement<String> value) {
155
        this.submitTransName = ((JAXBElement<String> ) value);
156
    }
157
158
 
159
     * Gets the value of the responseOptions property.
160
     *
161
     * @return
162
     *     possible object is
163
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
164
     *
165
     */
166
    public JAXBElement<String> getResponseOptions() {
167
        return responseOptions;
168
    }
169
170
 
171
     * Sets the value of the responseOptions property.
172
     *
173
     * @param value
174
     *     allowed object is
175
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
176
     *
177
     */
178
    public void setResponseOptions(JAXBElement<String> value) {
179
        this.responseOptions = ((JAXBElement<String> ) value);
180
    }
181
182
 
183