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.XmlElementRef;
8
import javax.xml.bind.annotation.XmlRootElement;
9
import javax.xml.bind.annotation.XmlType;
10
11
 
12
 
13
 * <p>Java class for anonymous complex type.
14
 *
15
 * <p>The following schema fragment specifies the expected content contained within this class.
16
 *
17
 * <pre>
18
 * &lt;complexType>
19
 *   &lt;complexContent>
20
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21
 *       &lt;sequence>
22
 *         &lt;element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/>
23
 *         &lt;element name="tableID" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
24
 *       &lt;/sequence>
25
 *     &lt;/restriction>
26
 *   &lt;/complexContent>
27
 * &lt;/complexType>
28
 * </pre>
29
 *
30
 *
31
 */
32
@XmlAccessorType(XmlAccessType.FIELD)
33
@XmlType(name = "", propOrder = {
34
    "auth",
35
    "tableID"
36
})
37
@XmlRootElement(name = "GetSubmitProjects")
38
public class GetSubmitProjects {
39
40
 
41
    protected JAXBElement<Auth> auth;
42
    protected BigInteger tableID;
43
44
 
45
     * Gets the value of the auth property.
46
     *
47
     * @return
48
     *     possible object is
49
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
50
     *
51
     */
52
    public JAXBElement<Auth> getAuth() {
53
        return auth;
54
    }
55
56
 
57
     * Sets the value of the auth property.
58
     *
59
     * @param value
60
     *     allowed object is
61
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
62
     *
63
     */
64
    public void setAuth(JAXBElement<Auth> value) {
65
        this.auth = ((JAXBElement<Auth> ) value);
66
    }
67
68
 
69
     * Gets the value of the tableID property.
70
     *
71
     * @return
72
     *     possible object is
73
     *     {@link BigInteger }
74
     *
75
     */
76
    public BigInteger getTableID() {
77
        return tableID;
78
    }
79
80
 
81
     * Sets the value of the tableID property.
82
     *
83
     * @param value
84
     *     allowed object is
85
     *     {@link BigInteger }
86
     *
87
     */
88
    public void setTableID(BigInteger value) {
89
        this.tableID = value;
90
    }
91
92
 
93