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

@@ -21,10 +21,10 @@ 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="versionSeriesId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="major" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="objectId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="major" 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="includeACL" 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,10 +36,10 @@ import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"repositoryId",
"versionSeriesId",
"objectId",
"major",
"filter",
"includeACL"
"extension"
})
@XmlRootElement(name = "getPropertiesOfLatestVersion")
public class GetPropertiesOfLatestVersion {
@@ -47,12 +47,12 @@ public class GetPropertiesOfLatestVersion {
@XmlElement(required = true)
protected String repositoryId;
@XmlElement(required = true)
protected String versionSeriesId;
protected boolean major;
@XmlElementRef(name = "filter", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
protected String objectId;
protected Boolean major;
@XmlElementRef(name = "filter", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement<String> filter;
@XmlElementRef(name = "includeACL", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
protected JAXBElement<Boolean> includeACL;
@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.
@@ -79,42 +79,50 @@ public class GetPropertiesOfLatestVersion {
}
/**
* Gets the value of the versionSeriesId property.
* Gets the value of the objectId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersionSeriesId() {
return versionSeriesId;
public String getObjectId() {
return objectId;
}
/**
* Sets the value of the versionSeriesId property.
* Sets the value of the objectId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersionSeriesId(String value) {
this.versionSeriesId = value;
public void setObjectId(String value) {
this.objectId = value;
}
/**
* Gets the value of the major property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isMajor() {
public Boolean isMajor() {
return major;
}
/**
* Sets the value of the major property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setMajor(boolean value) {
public void setMajor(Boolean value) {
this.major = value;
}
@@ -143,27 +151,27 @@ public class GetPropertiesOfLatestVersion {
}
/**
* Gets the value of the includeACL property.
* Gets the value of the extension property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
* {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
*
*/
public JAXBElement<Boolean> getIncludeACL() {
return includeACL;
public JAXBElement<CmisExtensionType> getExtension() {
return extension;
}
/**
* Sets the value of the includeACL property.
* Sets the value of the extension property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
* {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
*
*/
public void setIncludeACL(JAXBElement<Boolean> value) {
this.includeACL = ((JAXBElement<Boolean> ) value);
public void setExtension(JAXBElement<CmisExtensionType> value) {
this.extension = ((JAXBElement<CmisExtensionType> ) value);
}
}