Merged CMIS063 to HEAD

15463: Fixed MOB-1100: Update Web Services to 0.62 final

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@17232 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
David Caruana
2009-10-29 16:31:49 +00:00
parent e90b63f20b
commit babca05012
168 changed files with 10960 additions and 6673 deletions

View File

@@ -22,8 +22,9 @@ import javax.xml.bind.annotation.XmlType;
* <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="majorVersion" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="major" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <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"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -36,8 +37,9 @@ import javax.xml.bind.annotation.XmlType;
@XmlType(name = "", propOrder = {
"repositoryId",
"versionSeriesId",
"majorVersion",
"filter"
"major",
"filter",
"includeACL"
})
@XmlRootElement(name = "getPropertiesOfLatestVersion")
public class GetPropertiesOfLatestVersion {
@@ -46,9 +48,11 @@ public class GetPropertiesOfLatestVersion {
protected String repositoryId;
@XmlElement(required = true)
protected String versionSeriesId;
protected boolean majorVersion;
protected boolean major;
@XmlElementRef(name = "filter", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", 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;
/**
* Gets the value of the repositoryId property.
@@ -99,19 +103,19 @@ public class GetPropertiesOfLatestVersion {
}
/**
* Gets the value of the majorVersion property.
* Gets the value of the major property.
*
*/
public boolean isMajorVersion() {
return majorVersion;
public boolean isMajor() {
return major;
}
/**
* Sets the value of the majorVersion property.
* Sets the value of the major property.
*
*/
public void setMajorVersion(boolean value) {
this.majorVersion = value;
public void setMajor(boolean value) {
this.major = value;
}
/**
@@ -138,4 +142,28 @@ public class GetPropertiesOfLatestVersion {
this.filter = ((JAXBElement<String> ) 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);
}
}