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

Java class for getContentStream element declaration. * *

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

 * <element name="getContentStream">
 *   <complexType>
 *     <complexContent>
 *       <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *         <sequence>
 *           <element name="documentId" type="{http://www.cmis.org/ns/1.0}objectID"/>
 *           <element name="offset" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
 *           <element name="length" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
 *         </sequence>
 *       </restriction>
 *     </complexContent>
 *   </complexType>
 * </element>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "documentId", "offset", "length" }) @XmlRootElement(name = "getContentStream") public class GetContentStream { @XmlElement(namespace = "http://www.cmis.org/ns/1.0", required = true) protected String documentId; @XmlElement(namespace = "http://www.cmis.org/ns/1.0") protected BigInteger offset; @XmlElement(namespace = "http://www.cmis.org/ns/1.0") protected BigInteger length; /** * Gets the value of the documentId property. * * @return * possible object is * {@link String } * */ public String getDocumentId() { return documentId; } /** * Sets the value of the documentId property. * * @param value * allowed object is * {@link String } * */ public void setDocumentId(String value) { this.documentId = value; } /** * Gets the value of the offset property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getOffset() { return offset; } /** * Sets the value of the offset property. * * @param value * allowed object is * {@link BigInteger } * */ public void setOffset(BigInteger value) { this.offset = value; } /** * Gets the value of the length property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getLength() { return length; } /** * Sets the value of the length property. * * @param value * allowed object is * {@link BigInteger } * */ public void setLength(BigInteger value) { this.length = value; } }