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

@@ -23,10 +23,13 @@ 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="filter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="depth" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* <element name="filter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="includeAllowableActions" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="includeRelationships" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumIncludeRelationships" minOccurs="0"/>
* <element name="includeRelationships" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumIncludeRelationships" minOccurs="0"/>
* <element name="renditionFilter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="includePathSegments" 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>
@@ -39,10 +42,13 @@ import javax.xml.bind.annotation.XmlType;
@XmlType(name = "", propOrder = {
"repositoryId",
"folderId",
"filter",
"depth",
"filter",
"includeAllowableActions",
"includeRelationships"
"includeRelationships",
"renditionFilter",
"includePathSegments",
"extension"
})
@XmlRootElement(name = "getFolderTree")
public class GetFolderTree {
@@ -51,14 +57,20 @@ public class GetFolderTree {
protected String repositoryId;
@XmlElement(required = true)
protected String folderId;
@XmlElementRef(name = "filter", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
protected JAXBElement<String> filter;
@XmlElementRef(name = "depth", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
@XmlElementRef(name = "depth", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement<BigInteger> depth;
@XmlElementRef(name = "includeAllowableActions", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
@XmlElementRef(name = "filter", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement<String> filter;
@XmlElementRef(name = "includeAllowableActions", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement<Boolean> includeAllowableActions;
@XmlElementRef(name = "includeRelationships", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
@XmlElementRef(name = "includeRelationships", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement<EnumIncludeRelationships> includeRelationships;
@XmlElementRef(name = "renditionFilter", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement<String> renditionFilter;
@XmlElementRef(name = "includePathSegments", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement<Boolean> includePathSegments;
@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.
@@ -108,30 +120,6 @@ public class GetFolderTree {
this.folderId = value;
}
/**
* Gets the value of the filter property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getFilter() {
return filter;
}
/**
* Sets the value of the filter property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setFilter(JAXBElement<String> value) {
this.filter = ((JAXBElement<String> ) value);
}
/**
* Gets the value of the depth property.
*
@@ -156,6 +144,30 @@ public class GetFolderTree {
this.depth = ((JAXBElement<BigInteger> ) value);
}
/**
* Gets the value of the filter property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getFilter() {
return filter;
}
/**
* Sets the value of the filter property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setFilter(JAXBElement<String> value) {
this.filter = ((JAXBElement<String> ) value);
}
/**
* Gets the value of the includeAllowableActions property.
*
@@ -204,4 +216,76 @@ public class GetFolderTree {
this.includeRelationships = ((JAXBElement<EnumIncludeRelationships> ) value);
}
/**
* Gets the value of the renditionFilter property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getRenditionFilter() {
return renditionFilter;
}
/**
* Sets the value of the renditionFilter property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setRenditionFilter(JAXBElement<String> value) {
this.renditionFilter = ((JAXBElement<String> ) value);
}
/**
* Gets the value of the includePathSegments property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
*
*/
public JAXBElement<Boolean> getIncludePathSegments() {
return includePathSegments;
}
/**
* Sets the value of the includePathSegments property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
*
*/
public void setIncludePathSegments(JAXBElement<Boolean> value) {
this.includePathSegments = ((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);
}
}