Merged CMIS063 to HEAD

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
This commit is contained in:
David Caruana
2009-10-29 16:31:49 +00:00
parent e90b63f20b
commit babca05012
168 changed files with 10960 additions and 6673 deletions

View File

@@ -23,7 +23,8 @@ import javax.xml.bind.annotation.XmlType;
* <element name="repositoryId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="documentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="overwriteFlag" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="contentStream" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisContentStreamType"/>
* <element name="changeToken" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="contentStream" type="{http://docs.oasis-open.org/ns/cmis/messaging/200901}cmisContentStreamType"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -37,6 +38,7 @@ import javax.xml.bind.annotation.XmlType;
"repositoryId",
"documentId",
"overwriteFlag",
"changeToken",
"contentStream"
})
@XmlRootElement(name = "setContentStream")
@@ -48,6 +50,7 @@ public class SetContentStream {
protected String documentId;
@XmlElementRef(name = "overwriteFlag", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
protected JAXBElement<Boolean> overwriteFlag;
protected String changeToken;
@XmlElement(required = true)
protected CmisContentStreamType contentStream;
@@ -123,6 +126,30 @@ public class SetContentStream {
this.overwriteFlag = ((JAXBElement<Boolean> ) 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 contentStream property.
*