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="attributeName" 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
    "projectId",
38
    "attributeName"
39
})
40
@XmlRootElement(name = "GetAvailableSubmitTransitions")
41
public class GetAvailableSubmitTransitions {
42
43
 
44
    protected JAXBElement<Auth> auth;
45
    @XmlElement(required = true)
46
    protected BigInteger projectId;
47
    @XmlElementRef(name = "attributeName", namespace = "urn:aewebservices71", type = JAXBElement.class)
48
    protected JAXBElement<String> attributeName;
49
50
 
51
     * Gets the value of the auth property.
52
     *
53
     * @return
54
     *     possible object is
55
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
56
     *
57
     */
58
    public JAXBElement<Auth> getAuth() {
59
        return auth;
60
    }
61
62
 
63
     * Sets the value of the auth property.
64
     *
65
     * @param value
66
     *     allowed object is
67
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
68
     *
69
     */
70
    public void setAuth(JAXBElement<Auth> value) {
71
        this.auth = ((JAXBElement<Auth> ) value);
72
    }
73
74
 
75
     * Gets the value of the projectId property.
76
     *
77
     * @return
78
     *     possible object is
79
     *     {@link BigInteger }
80
     *
81
     */
82
    public BigInteger getProjectId() {
83
        return projectId;
84
    }
85
86
 
87
     * Sets the value of the projectId property.
88
     *
89
     * @param value
90
     *     allowed object is
91
     *     {@link BigInteger }
92
     *
93
     */
94
    public void setProjectId(BigInteger value) {
95
        this.projectId = value;
96
    }
97
98
 
99
     * Gets the value of the attributeName property.
100
     *
101
     * @return
102
     *     possible object is
103
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
104
     *
105
     */
106
    public JAXBElement<String> getAttributeName() {
107
        return attributeName;
108
    }
109
110
 
111
     * Sets the value of the attributeName property.
112
     *
113
     * @param value
114
     *     allowed object is
115
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
116
     *
117
     */
118
    public void setAttributeName(JAXBElement<String> value) {
119
        this.attributeName = ((JAXBElement<String> ) value);
120
    }
121
122
 
123