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