1
2 package org.apache.chemistry.opencmis.commons.impl.jaxb;
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.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9
10
11 /**
12 * <p>Java class for anonymous complex type.
13 *
14 * <p>The following schema fragment specifies the expected content contained within this class.
15 *
16 * <pre>
17 * <complexType>
18 * <complexContent>
19 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20 * <sequence>
21 * <element name="objects" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisObjectListType"/>
22 * <element name="changeLogToken" type="{http://www.w3.org/2001/XMLSchema}string"/>
23 * </sequence>
24 * </restriction>
25 * </complexContent>
26 * </complexType>
27 * </pre>
28 *
29 *
30 */
31 @XmlAccessorType(XmlAccessType.FIELD)
32 @XmlType(name = "", propOrder = {
33 "objects",
34 "changeLogToken"
35 })
36 @XmlRootElement(name = "getContentChangesResponse")
37 public class GetContentChangesResponse {
38
39 @XmlElement(required = true)
40 protected CmisObjectListType objects;
41 @XmlElement(required = true)
42 protected String changeLogToken;
43
44 /**
45 * Gets the value of the objects property.
46 *
47 * @return
48 * possible object is
49 * {@link CmisObjectListType }
50 *
51 */
52 public CmisObjectListType getObjects() {
53 return objects;
54 }
55
56 /**
57 * Sets the value of the objects property.
58 *
59 * @param value
60 * allowed object is
61 * {@link CmisObjectListType }
62 *
63 */
64 public void setObjects(CmisObjectListType value) {
65 this.objects = value;
66 }
67
68 /**
69 * Gets the value of the changeLogToken property.
70 *
71 * @return
72 * possible object is
73 * {@link String }
74 *
75 */
76 public String getChangeLogToken() {
77 return changeLogToken;
78 }
79
80 /**
81 * Sets the value of the changeLogToken property.
82 *
83 * @param value
84 * allowed object is
85 * {@link String }
86 *
87 */
88 public void setChangeLogToken(String value) {
89 this.changeLogToken = value;
90 }
91
92 }