mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +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:
@@ -26,9 +26,11 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <element name="filter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="orderBy" 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="maxItems" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
|
||||
* <element name="skipCount" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
|
||||
* <element name="extension" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisExtensionType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -45,28 +47,34 @@ import javax.xml.bind.annotation.XmlType;
|
||||
"orderBy",
|
||||
"includeAllowableActions",
|
||||
"includeRelationships",
|
||||
"renditionFilter",
|
||||
"maxItems",
|
||||
"skipCount"
|
||||
"skipCount",
|
||||
"extension"
|
||||
})
|
||||
@XmlRootElement(name = "getCheckedOutDocs")
|
||||
public class GetCheckedOutDocs {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected String repositoryId;
|
||||
@XmlElementRef(name = "folderId", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
|
||||
@XmlElementRef(name = "folderId", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
|
||||
protected JAXBElement<String> folderId;
|
||||
@XmlElementRef(name = "filter", 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 = "orderBy", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
|
||||
@XmlElementRef(name = "orderBy", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
|
||||
protected JAXBElement<String> orderBy;
|
||||
@XmlElementRef(name = "includeAllowableActions", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
|
||||
@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 = "maxItems", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
|
||||
@XmlElementRef(name = "renditionFilter", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
|
||||
protected JAXBElement<String> renditionFilter;
|
||||
@XmlElementRef(name = "maxItems", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
|
||||
protected JAXBElement<BigInteger> maxItems;
|
||||
@XmlElementRef(name = "skipCount", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
|
||||
@XmlElementRef(name = "skipCount", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
|
||||
protected JAXBElement<BigInteger> skipCount;
|
||||
@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.
|
||||
@@ -212,6 +220,30 @@ public class GetCheckedOutDocs {
|
||||
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 maxItems property.
|
||||
*
|
||||
@@ -260,4 +292,28 @@ public class GetCheckedOutDocs {
|
||||
this.skipCount = ((JAXBElement<BigInteger> ) 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