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,11 +22,13 @@ import javax.xml.bind.annotation.XmlType;
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="repositoryId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="changeToken" 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="includeACL" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="changeLogToken" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="includeProperties" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="filter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="includePolicyIds" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="includeACL" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="maxItems" 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>
@@ -38,25 +40,33 @@ import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"repositoryId",
"changeToken",
"maxItems",
"includeACL",
"changeLogToken",
"includeProperties",
"filter"
"filter",
"includePolicyIds",
"includeACL",
"maxItems",
"extension"
})
@XmlRootElement(name = "getContentChanges")
public class GetContentChanges {
@XmlElement(required = true)
protected String repositoryId;
protected String changeToken;
@XmlElementRef(name = "maxItems", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
protected JAXBElement<BigInteger> maxItems;
@XmlElementRef(name = "includeACL", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
protected JAXBElement<Boolean> includeACL;
@XmlElementRef(name = "includeProperties", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
@XmlElementRef(name = "changeLogToken", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement<String> changeLogToken;
@XmlElementRef(name = "includeProperties", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement<Boolean> includeProperties;
protected String filter;
@XmlElementRef(name = "filter", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement<String> filter;
@XmlElementRef(name = "includePolicyIds", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement<Boolean> includePolicyIds;
@XmlElementRef(name = "includeACL", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement<Boolean> includeACL;
@XmlElementRef(name = "maxItems", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement<BigInteger> maxItems;
@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.
@@ -83,75 +93,27 @@ public class GetContentChanges {
}
/**
* Gets the value of the changeToken property.
* Gets the value of the changeLogToken property.
*
* @return
* possible object is
* {@link String }
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public String getChangeToken() {
return changeToken;
public JAXBElement<String> getChangeLogToken() {
return changeLogToken;
}
/**
* Sets the value of the changeToken property.
* Sets the value of the changeLogToken property.
*
* @param value
* allowed object is
* {@link String }
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setChangeToken(String value) {
this.changeToken = value;
}
/**
* Gets the value of the maxItems property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
*
*/
public JAXBElement<BigInteger> getMaxItems() {
return maxItems;
}
/**
* Sets the value of the maxItems property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
*
*/
public void setMaxItems(JAXBElement<BigInteger> value) {
this.maxItems = ((JAXBElement<BigInteger> ) value);
}
/**
* Gets the value of the includeACL property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
*
*/
public JAXBElement<Boolean> getIncludeACL() {
return includeACL;
}
/**
* Sets the value of the includeACL property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
*
*/
public void setIncludeACL(JAXBElement<Boolean> value) {
this.includeACL = ((JAXBElement<Boolean> ) value);
public void setChangeLogToken(JAXBElement<String> value) {
this.changeLogToken = ((JAXBElement<String> ) value);
}
/**
@@ -183,10 +145,10 @@ public class GetContentChanges {
*
* @return
* possible object is
* {@link String }
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public String getFilter() {
public JAXBElement<String> getFilter() {
return filter;
}
@@ -195,11 +157,107 @@ public class GetContentChanges {
*
* @param value
* allowed object is
* {@link String }
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setFilter(String value) {
this.filter = value;
public void setFilter(JAXBElement<String> value) {
this.filter = ((JAXBElement<String> ) value);
}
/**
* Gets the value of the includePolicyIds property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
*
*/
public JAXBElement<Boolean> getIncludePolicyIds() {
return includePolicyIds;
}
/**
* Sets the value of the includePolicyIds property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
*
*/
public void setIncludePolicyIds(JAXBElement<Boolean> value) {
this.includePolicyIds = ((JAXBElement<Boolean> ) value);
}
/**
* Gets the value of the includeACL property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
*
*/
public JAXBElement<Boolean> getIncludeACL() {
return includeACL;
}
/**
* Sets the value of the includeACL property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
*
*/
public void setIncludeACL(JAXBElement<Boolean> value) {
this.includeACL = ((JAXBElement<Boolean> ) value);
}
/**
* Gets the value of the maxItems property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
*
*/
public JAXBElement<BigInteger> getMaxItems() {
return maxItems;
}
/**
* Sets the value of the maxItems property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
*
*/
public void setMaxItems(JAXBElement<BigInteger> value) {
this.maxItems = ((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);
}
}