1
2 package org.apache.chemistry.opencmis.commons.impl.jaxb;
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 * <complexType>
20 * <complexContent>
21 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
22 * <sequence>
23 * <element name="objectId" type="{http://www.w3.org/2001/XMLSchema}string"/>
24 * <element name="changeToken" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25 * <element name="extension" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisExtensionType" minOccurs="0"/>
26 * </sequence>
27 * </restriction>
28 * </complexContent>
29 * </complexType>
30 * </pre>
31 *
32 *
33 */
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "", propOrder = {
36 "objectId",
37 "changeToken",
38 "extension"
39 })
40 @XmlRootElement(name = "deleteContentStreamResponse")
41 public class DeleteContentStreamResponse {
42
43 @XmlElement(required = true)
44 protected String objectId;
45 protected String changeToken;
46 @XmlElementRef(name = "extension", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
47 protected JAXBElement<CmisExtensionType> extension;
48
49 /**
50 * Gets the value of the objectId property.
51 *
52 * @return
53 * possible object is
54 * {@link String }
55 *
56 */
57 public String getObjectId() {
58 return objectId;
59 }
60
61 /**
62 * Sets the value of the objectId property.
63 *
64 * @param value
65 * allowed object is
66 * {@link String }
67 *
68 */
69 public void setObjectId(String value) {
70 this.objectId = value;
71 }
72
73 /**
74 * Gets the value of the changeToken property.
75 *
76 * @return
77 * possible object is
78 * {@link String }
79 *
80 */
81 public String getChangeToken() {
82 return changeToken;
83 }
84
85 /**
86 * Sets the value of the changeToken property.
87 *
88 * @param value
89 * allowed object is
90 * {@link String }
91 *
92 */
93 public void setChangeToken(String value) {
94 this.changeToken = value;
95 }
96
97 /**
98 * Gets the value of the extension property.
99 *
100 * @return
101 * possible object is
102 * {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
103 *
104 */
105 public JAXBElement<CmisExtensionType> getExtension() {
106 return extension;
107 }
108
109 /**
110 * Sets the value of the extension property.
111 *
112 * @param value
113 * allowed object is
114 * {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
115 *
116 */
117 public void setExtension(JAXBElement<CmisExtensionType> value) {
118 this.extension = ((JAXBElement<CmisExtensionType> ) value);
119 }
120
121 }