This project has retired. For details please refer to its Attic page.
GetCheckedOutDocs xref

1   
2   package org.apache.chemistry.opencmis.commons.impl.jaxb;
3   
4   import java.math.BigInteger;
5   import javax.xml.bind.JAXBElement;
6   import javax.xml.bind.annotation.XmlAccessType;
7   import javax.xml.bind.annotation.XmlAccessorType;
8   import javax.xml.bind.annotation.XmlElement;
9   import javax.xml.bind.annotation.XmlElementRef;
10  import javax.xml.bind.annotation.XmlRootElement;
11  import javax.xml.bind.annotation.XmlType;
12  
13  
14  /**
15   * <p>Java class for anonymous complex type.
16   * 
17   * <p>The following schema fragment specifies the expected content contained within this class.
18   * 
19   * <pre>
20   * &lt;complexType>
21   *   &lt;complexContent>
22   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
23   *       &lt;sequence>
24   *         &lt;element name="repositoryId" type="{http://www.w3.org/2001/XMLSchema}string"/>
25   *         &lt;element name="folderId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26   *         &lt;element name="filter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27   *         &lt;element name="orderBy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
28   *         &lt;element name="includeAllowableActions" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
29   *         &lt;element name="includeRelationships" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumIncludeRelationships" minOccurs="0"/>
30   *         &lt;element name="renditionFilter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
31   *         &lt;element name="maxItems" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
32   *         &lt;element name="skipCount" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
33   *         &lt;element name="extension" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisExtensionType" minOccurs="0"/>
34   *       &lt;/sequence>
35   *     &lt;/restriction>
36   *   &lt;/complexContent>
37   * &lt;/complexType>
38   * </pre>
39   * 
40   * 
41   */
42  @XmlAccessorType(XmlAccessType.FIELD)
43  @XmlType(name = "", propOrder = {
44      "repositoryId",
45      "folderId",
46      "filter",
47      "orderBy",
48      "includeAllowableActions",
49      "includeRelationships",
50      "renditionFilter",
51      "maxItems",
52      "skipCount",
53      "extension"
54  })
55  @XmlRootElement(name = "getCheckedOutDocs")
56  public class GetCheckedOutDocs {
57  
58      @XmlElement(required = true)
59      protected String repositoryId;
60      @XmlElementRef(name = "folderId", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
61      protected JAXBElement<String> folderId;
62      @XmlElementRef(name = "filter", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
63      protected JAXBElement<String> filter;
64      @XmlElementRef(name = "orderBy", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
65      protected JAXBElement<String> orderBy;
66      @XmlElementRef(name = "includeAllowableActions", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
67      protected JAXBElement<Boolean> includeAllowableActions;
68      @XmlElementRef(name = "includeRelationships", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
69      protected JAXBElement<EnumIncludeRelationships> includeRelationships;
70      @XmlElementRef(name = "renditionFilter", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
71      protected JAXBElement<String> renditionFilter;
72      @XmlElementRef(name = "maxItems", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
73      protected JAXBElement<BigInteger> maxItems;
74      @XmlElementRef(name = "skipCount", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
75      protected JAXBElement<BigInteger> skipCount;
76      @XmlElementRef(name = "extension", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
77      protected JAXBElement<CmisExtensionType> extension;
78  
79      /**
80       * Gets the value of the repositoryId property.
81       * 
82       * @return
83       *     possible object is
84       *     {@link String }
85       *     
86       */
87      public String getRepositoryId() {
88          return repositoryId;
89      }
90  
91      /**
92       * Sets the value of the repositoryId property.
93       * 
94       * @param value
95       *     allowed object is
96       *     {@link String }
97       *     
98       */
99      public void setRepositoryId(String value) {
100         this.repositoryId = value;
101     }
102 
103     /**
104      * Gets the value of the folderId property.
105      * 
106      * @return
107      *     possible object is
108      *     {@link JAXBElement }{@code <}{@link String }{@code >}
109      *     
110      */
111     public JAXBElement<String> getFolderId() {
112         return folderId;
113     }
114 
115     /**
116      * Sets the value of the folderId property.
117      * 
118      * @param value
119      *     allowed object is
120      *     {@link JAXBElement }{@code <}{@link String }{@code >}
121      *     
122      */
123     public void setFolderId(JAXBElement<String> value) {
124         this.folderId = ((JAXBElement<String> ) value);
125     }
126 
127     /**
128      * Gets the value of the filter property.
129      * 
130      * @return
131      *     possible object is
132      *     {@link JAXBElement }{@code <}{@link String }{@code >}
133      *     
134      */
135     public JAXBElement<String> getFilter() {
136         return filter;
137     }
138 
139     /**
140      * Sets the value of the filter property.
141      * 
142      * @param value
143      *     allowed object is
144      *     {@link JAXBElement }{@code <}{@link String }{@code >}
145      *     
146      */
147     public void setFilter(JAXBElement<String> value) {
148         this.filter = ((JAXBElement<String> ) value);
149     }
150 
151     /**
152      * Gets the value of the orderBy property.
153      * 
154      * @return
155      *     possible object is
156      *     {@link JAXBElement }{@code <}{@link String }{@code >}
157      *     
158      */
159     public JAXBElement<String> getOrderBy() {
160         return orderBy;
161     }
162 
163     /**
164      * Sets the value of the orderBy property.
165      * 
166      * @param value
167      *     allowed object is
168      *     {@link JAXBElement }{@code <}{@link String }{@code >}
169      *     
170      */
171     public void setOrderBy(JAXBElement<String> value) {
172         this.orderBy = ((JAXBElement<String> ) value);
173     }
174 
175     /**
176      * Gets the value of the includeAllowableActions property.
177      * 
178      * @return
179      *     possible object is
180      *     {@link JAXBElement }{@code <}{@link Boolean }{@code >}
181      *     
182      */
183     public JAXBElement<Boolean> getIncludeAllowableActions() {
184         return includeAllowableActions;
185     }
186 
187     /**
188      * Sets the value of the includeAllowableActions property.
189      * 
190      * @param value
191      *     allowed object is
192      *     {@link JAXBElement }{@code <}{@link Boolean }{@code >}
193      *     
194      */
195     public void setIncludeAllowableActions(JAXBElement<Boolean> value) {
196         this.includeAllowableActions = ((JAXBElement<Boolean> ) value);
197     }
198 
199     /**
200      * Gets the value of the includeRelationships property.
201      * 
202      * @return
203      *     possible object is
204      *     {@link JAXBElement }{@code <}{@link EnumIncludeRelationships }{@code >}
205      *     
206      */
207     public JAXBElement<EnumIncludeRelationships> getIncludeRelationships() {
208         return includeRelationships;
209     }
210 
211     /**
212      * Sets the value of the includeRelationships property.
213      * 
214      * @param value
215      *     allowed object is
216      *     {@link JAXBElement }{@code <}{@link EnumIncludeRelationships }{@code >}
217      *     
218      */
219     public void setIncludeRelationships(JAXBElement<EnumIncludeRelationships> value) {
220         this.includeRelationships = ((JAXBElement<EnumIncludeRelationships> ) value);
221     }
222 
223     /**
224      * Gets the value of the renditionFilter property.
225      * 
226      * @return
227      *     possible object is
228      *     {@link JAXBElement }{@code <}{@link String }{@code >}
229      *     
230      */
231     public JAXBElement<String> getRenditionFilter() {
232         return renditionFilter;
233     }
234 
235     /**
236      * Sets the value of the renditionFilter property.
237      * 
238      * @param value
239      *     allowed object is
240      *     {@link JAXBElement }{@code <}{@link String }{@code >}
241      *     
242      */
243     public void setRenditionFilter(JAXBElement<String> value) {
244         this.renditionFilter = ((JAXBElement<String> ) value);
245     }
246 
247     /**
248      * Gets the value of the maxItems property.
249      * 
250      * @return
251      *     possible object is
252      *     {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
253      *     
254      */
255     public JAXBElement<BigInteger> getMaxItems() {
256         return maxItems;
257     }
258 
259     /**
260      * Sets the value of the maxItems property.
261      * 
262      * @param value
263      *     allowed object is
264      *     {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
265      *     
266      */
267     public void setMaxItems(JAXBElement<BigInteger> value) {
268         this.maxItems = ((JAXBElement<BigInteger> ) value);
269     }
270 
271     /**
272      * Gets the value of the skipCount property.
273      * 
274      * @return
275      *     possible object is
276      *     {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
277      *     
278      */
279     public JAXBElement<BigInteger> getSkipCount() {
280         return skipCount;
281     }
282 
283     /**
284      * Sets the value of the skipCount property.
285      * 
286      * @param value
287      *     allowed object is
288      *     {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
289      *     
290      */
291     public void setSkipCount(JAXBElement<BigInteger> value) {
292         this.skipCount = ((JAXBElement<BigInteger> ) value);
293     }
294 
295     /**
296      * Gets the value of the extension property.
297      * 
298      * @return
299      *     possible object is
300      *     {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
301      *     
302      */
303     public JAXBElement<CmisExtensionType> getExtension() {
304         return extension;
305     }
306 
307     /**
308      * Sets the value of the extension property.
309      * 
310      * @param value
311      *     allowed object is
312      *     {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
313      *     
314      */
315     public void setExtension(JAXBElement<CmisExtensionType> value) {
316         this.extension = ((JAXBElement<CmisExtensionType> ) value);
317     }
318 
319 }