package org.alfresco.repo.cmis.ws; import java.math.BigInteger; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="repositoryId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="changeToken" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="maxItems" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
 *         <element name="includeACL" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="includeProperties" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="filter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "repositoryId", "changeToken", "maxItems", "includeACL", "includeProperties", "filter" }) @XmlRootElement(name = "getContentChanges") public class GetContentChanges { @XmlElement(required = true) protected String repositoryId; protected String changeToken; @XmlElementRef(name = "maxItems", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class) protected JAXBElement maxItems; @XmlElementRef(name = "includeACL", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class) protected JAXBElement includeACL; @XmlElementRef(name = "includeProperties", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class) protected JAXBElement includeProperties; protected String filter; /** * Gets the value of the repositoryId property. * * @return * possible object is * {@link String } * */ public String getRepositoryId() { return repositoryId; } /** * Sets the value of the repositoryId property. * * @param value * allowed object is * {@link String } * */ public void setRepositoryId(String value) { this.repositoryId = value; } /** * Gets the value of the changeToken property. * * @return * possible object is * {@link String } * */ public String getChangeToken() { return changeToken; } /** * Sets the value of the changeToken property. * * @param value * allowed object is * {@link String } * */ public void setChangeToken(String value) { this.changeToken = value; } /** * Gets the value of the maxItems property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * */ public JAXBElement getMaxItems() { return maxItems; } /** * Sets the value of the maxItems property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * */ public void setMaxItems(JAXBElement value) { this.maxItems = ((JAXBElement ) value); } /** * Gets the value of the includeACL property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link Boolean }{@code >} * */ public JAXBElement getIncludeACL() { return includeACL; } /** * Sets the value of the includeACL property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link Boolean }{@code >} * */ public void setIncludeACL(JAXBElement value) { this.includeACL = ((JAXBElement ) value); } /** * Gets the value of the includeProperties property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link Boolean }{@code >} * */ public JAXBElement getIncludeProperties() { return includeProperties; } /** * Sets the value of the includeProperties property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link Boolean }{@code >} * */ public void setIncludeProperties(JAXBElement value) { this.includeProperties = ((JAXBElement ) value); } /** * Gets the value of the filter property. * * @return * possible object is * {@link String } * */ public String getFilter() { return filter; } /** * Sets the value of the filter property. * * @param value * allowed object is * {@link String } * */ public void setFilter(String value) { this.filter = value; } }