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:
David Caruana
2009-10-29 18:40:59 +00:00
parent 93346e262e
commit d6b8ce91a5
203 changed files with 10223 additions and 6060 deletions

View File

@@ -22,8 +22,10 @@ import javax.xml.bind.annotation.XmlType;
* <sequence>
* <element name="repositoryId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="folderId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="unfileObject" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumUnfileObject"/>
* <element name="allVersions" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="unfileObject" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumUnfileObject" minOccurs="0"/>
* <element name="continueOnFailure" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="extension" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -36,8 +38,10 @@ import javax.xml.bind.annotation.XmlType;
@XmlType(name = "", propOrder = {
"repositoryId",
"folderId",
"allVersions",
"unfileObject",
"continueOnFailure"
"continueOnFailure",
"extension"
})
@XmlRootElement(name = "deleteTree")
public class DeleteTree {
@@ -46,10 +50,14 @@ public class DeleteTree {
protected String repositoryId;
@XmlElement(required = true)
protected String folderId;
@XmlElement(required = true)
protected EnumUnfileObject unfileObject;
@XmlElementRef(name = "continueOnFailure", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
@XmlElementRef(name = "allVersions", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement<Boolean> allVersions;
@XmlElementRef(name = "unfileObject", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement<EnumUnfileObject> unfileObject;
@XmlElementRef(name = "continueOnFailure", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement<Boolean> continueOnFailure;
@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.
@@ -99,15 +107,39 @@ public class DeleteTree {
this.folderId = value;
}
/**
* Gets the value of the allVersions property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
*
*/
public JAXBElement<Boolean> getAllVersions() {
return allVersions;
}
/**
* Sets the value of the allVersions property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
*
*/
public void setAllVersions(JAXBElement<Boolean> value) {
this.allVersions = ((JAXBElement<Boolean> ) value);
}
/**
* Gets the value of the unfileObject property.
*
* @return
* possible object is
* {@link EnumUnfileObject }
* {@link JAXBElement }{@code <}{@link EnumUnfileObject }{@code >}
*
*/
public EnumUnfileObject getUnfileObject() {
public JAXBElement<EnumUnfileObject> getUnfileObject() {
return unfileObject;
}
@@ -116,11 +148,11 @@ public class DeleteTree {
*
* @param value
* allowed object is
* {@link EnumUnfileObject }
* {@link JAXBElement }{@code <}{@link EnumUnfileObject }{@code >}
*
*/
public void setUnfileObject(EnumUnfileObject value) {
this.unfileObject = value;
public void setUnfileObject(JAXBElement<EnumUnfileObject> value) {
this.unfileObject = ((JAXBElement<EnumUnfileObject> ) value);
}
/**
@@ -147,4 +179,28 @@ public class DeleteTree {
this.continueOnFailure = ((JAXBElement<Boolean> ) 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);
}
}