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="attachmentID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
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
    "attachmentID"
37
})
38
@XmlRootElement(name = "DeleteAttachment")
39
public class DeleteAttachment {
40
41
 
42
    protected JAXBElement<Auth> auth;
43
    @XmlElement(required = true)
44
    protected BigInteger attachmentID;
45
46
 
47
     * Gets the value of the auth property.
48
     *
49
     * @return
50
     *     possible object is
51
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
52
     *
53
     */
54
    public JAXBElement<Auth> getAuth() {
55
        return auth;
56
    }
57
58
 
59
     * Sets the value of the auth property.
60
     *
61
     * @param value
62
     *     allowed object is
63
     *     {@link JAXBElement }{@code <}{@link Auth }{@code >}
64
     *
65
     */
66
    public void setAuth(JAXBElement<Auth> value) {
67
        this.auth = ((JAXBElement<Auth> ) value);
68
    }
69
70
 
71
     * Gets the value of the attachmentID property.
72
     *
73
     * @return
74
     *     possible object is
75
     *     {@link BigInteger }
76
     *
77
     */
78
    public BigInteger getAttachmentID() {
79
        return attachmentID;
80
    }
81
82
 
83
     * Sets the value of the attachmentID property.
84
     *
85
     * @param value
86
     *     allowed object is
87
     *     {@link BigInteger }
88
     *
89
     */
90
    public void setAttachmentID(BigInteger value) {
91
        this.attachmentID = value;
92
    }
93
94
 
95