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.XmlElement;
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="solutionName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24
 *         &lt;element name="tableType" type="{urn:aewebservices71}Table-Type"/>
25
 *       &lt;/sequence>
26
 *     &lt;/restriction>
27
 *   &lt;/complexContent>
28
 * &lt;/complexType>
29
 * </pre>
30
 *
31
 *
32
 */
33
@XmlAccessorType(XmlAccessType.FIELD)
34
@XmlType(name = "", propOrder = {
35
    "auth",
36
    "solutionName",
37
    "tableType"
38
})
39
@XmlRootElement(name = "GetTablesWithName")
40
public class GetTablesWithName {
41
42
 
43
    protected JAXBElement<Auth> auth;
44
    @XmlElementRef(name = "solutionName", namespace = "urn:aewebservices71", type = JAXBElement.class)
45
    protected JAXBElement<String> solutionName;
46
    @XmlElement(required = true)
47
    protected TableType tableType;
48
49
 
50
     * Gets the value of the auth property.
51
     *
52
     * @return
53
     *     possible object is
54
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
55
     *
56
     */
57
    public JAXBElement<Auth> getAuth() {
58
        return auth;
59
    }
60
61
 
62
     * Sets the value of the auth property.
63
     *
64
     * @param value
65
     *     allowed object is
66
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
67
     *
68
     */
69
    public void setAuth(JAXBElement<Auth> value) {
70
        this.auth = ((JAXBElement<Auth> ) value);
71
    }
72
73
 
74
     * Gets the value of the solutionName property.
75
     *
76
     * @return
77
     *     possible object is
78
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
79
     *
80
     */
81
    public JAXBElement<String> getSolutionName() {
82
        return solutionName;
83
    }
84
85
 
86
     * Sets the value of the solutionName property.
87
     *
88
     * @param value
89
     *     allowed object is
90
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
91
     *
92
     */
93
    public void setSolutionName(JAXBElement<String> value) {
94
        this.solutionName = ((JAXBElement<String> ) value);
95
    }
96
97
 
98
     * Gets the value of the tableType property.
99
     *
100
     * @return
101
     *     possible object is
102
     *     {@link TableType }
103
     *
104
     */
105
    public TableType getTableType() {
106
        return tableType;
107
    }
108
109
 
110
     * Sets the value of the tableType property.
111
     *
112
     * @param value
113
     *     allowed object is
114
     *     {@link TableType }
115
     *
116
     */
117
    public void setTableType(TableType value) {
118
        this.tableType = value;
119
    }
120
121
 
122