mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-21 18:09:20 +00:00
Merged CMIS063 to HEAD
16930: MOB-1330: Upgrade Web Services Repository to 0.7 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@17243 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -23,7 +23,8 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <element name="repositoryId" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="objectId" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="changeToken" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="properties" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertiesType"/>
|
||||
* <element name="properties" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertiesType"/>
|
||||
* <element name="extension" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisExtensionType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -37,7 +38,8 @@ import javax.xml.bind.annotation.XmlType;
|
||||
"repositoryId",
|
||||
"objectId",
|
||||
"changeToken",
|
||||
"properties"
|
||||
"properties",
|
||||
"extension"
|
||||
})
|
||||
@XmlRootElement(name = "updateProperties")
|
||||
public class UpdateProperties {
|
||||
@@ -46,10 +48,12 @@ public class UpdateProperties {
|
||||
protected String repositoryId;
|
||||
@XmlElement(required = true)
|
||||
protected String objectId;
|
||||
@XmlElementRef(name = "changeToken", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
|
||||
@XmlElementRef(name = "changeToken", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
|
||||
protected JAXBElement<String> changeToken;
|
||||
@XmlElement(required = true)
|
||||
protected CmisPropertiesType properties;
|
||||
@XmlElementRef(name = "extension", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
|
||||
protected JAXBElement<CmisExtensionType> extension;
|
||||
|
||||
/**
|
||||
* Gets the value of the repositoryId property.
|
||||
@@ -147,4 +151,28 @@ public class UpdateProperties {
|
||||
this.properties = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the extension property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
|
||||
*
|
||||
*/
|
||||
public JAXBElement<CmisExtensionType> getExtension() {
|
||||
return extension;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the extension property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
|
||||
*
|
||||
*/
|
||||
public void setExtension(JAXBElement<CmisExtensionType> value) {
|
||||
this.extension = ((JAXBElement<CmisExtensionType> ) value);
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user