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.XmlAccessorType;
5
import javax.xml.bind.annotation.XmlElement;
6
import javax.xml.bind.annotation.XmlType;
7
8
 
9
 
10
 * <p>Java class for FileAttachmentContents complex type.
11
 *
12
 * <p>The following schema fragment specifies the expected content contained within this class.
13
 *
14
 * <pre>
15
 * &lt;complexType name="FileAttachmentContents">
16
 *   &lt;complexContent>
17
 *     &lt;extension base="{urn:aewebservices71}FileAttachment">
18
 *       &lt;sequence>
19
 *         &lt;element name="checksum" type="{http://www.w3.org/2001/XMLSchema}long"/>
20
 *         &lt;element name="encodedContents" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
21
 *       &lt;/sequence>
22
 *     &lt;/extension>
23
 *   &lt;/complexContent>
24
 * &lt;/complexType>
25
 * </pre>
26
 *
27
 *
28
 */
29
@XmlAccessorType(XmlAccessType.FIELD)
30
@XmlType(name = "FileAttachmentContents", propOrder = {
31
    "checksum",
32
    "encodedContents"
33
})
34
public class FileAttachmentContents
35
    extends FileAttachment
36
{
37
38
 
39
    @XmlElement(required = true)
40
    protected byte[] encodedContents;
41
42
 
43
     * Gets the value of the checksum property.
44
     *
45
     */
46
    public long getChecksum() {
47
        return checksum;
48
    }
49
50
 
51
     * Sets the value of the checksum property.
52
     *
53
     */
54
    public void setChecksum(long value) {
55
        this.checksum = value;
56
    }
57
58
 
59
     * Gets the value of the encodedContents property.
60
     *
61
     * @return
62
     *     possible object is
63
     *     byte[]
64
     */
65
    public byte[] getEncodedContents() {
66
        return encodedContents;
67
    }
68
69
 
70
     * Sets the value of the encodedContents property.
71
     *
72
     * @param value
73
     *     allowed object is
74
     *     byte[]
75
     */
76
    public void setEncodedContents(byte[] value) {
77
        this.encodedContents = ((byte[]) value);
78
    }
79
80
 
81