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