mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
15463: Fixed MOB-1100: Update Web Services to 0.62 final git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@17232 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
179 lines
4.8 KiB
Java
Executable File
179 lines
4.8 KiB
Java
Executable File
|
|
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;
|
|
|
|
|
|
/**
|
|
* <p>Java class for anonymous complex type.
|
|
*
|
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
|
*
|
|
* <pre>
|
|
* <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="objectId" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
* <element name="renditionFilter" 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="skipCount" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
|
|
* </sequence>
|
|
* </restriction>
|
|
* </complexContent>
|
|
* </complexType>
|
|
* </pre>
|
|
*
|
|
*
|
|
*/
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@XmlType(name = "", propOrder = {
|
|
"repositoryId",
|
|
"objectId",
|
|
"renditionFilter",
|
|
"maxItems",
|
|
"skipCount"
|
|
})
|
|
@XmlRootElement(name = "getRenditions")
|
|
public class GetRenditions {
|
|
|
|
@XmlElement(required = true)
|
|
protected String repositoryId;
|
|
@XmlElement(required = true)
|
|
protected String objectId;
|
|
protected String renditionFilter;
|
|
@XmlElementRef(name = "maxItems", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
|
|
protected JAXBElement<BigInteger> maxItems;
|
|
@XmlElementRef(name = "skipCount", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
|
|
protected JAXBElement<BigInteger> skipCount;
|
|
|
|
/**
|
|
* 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 objectId property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getObjectId() {
|
|
return objectId;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the objectId property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setObjectId(String value) {
|
|
this.objectId = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the renditionFilter property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getRenditionFilter() {
|
|
return renditionFilter;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the renditionFilter property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setRenditionFilter(String value) {
|
|
this.renditionFilter = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the maxItems property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
|
*
|
|
*/
|
|
public JAXBElement<BigInteger> 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<BigInteger> value) {
|
|
this.maxItems = ((JAXBElement<BigInteger> ) value);
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the skipCount property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
|
*
|
|
*/
|
|
public JAXBElement<BigInteger> getSkipCount() {
|
|
return skipCount;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the skipCount property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
|
*
|
|
*/
|
|
public void setSkipCount(JAXBElement<BigInteger> value) {
|
|
this.skipCount = ((JAXBElement<BigInteger> ) value);
|
|
}
|
|
|
|
}
|