acl;
- protected boolean exact;
+ protected CmisACLType acl;
/**
* Gets the value of the acl property.
*
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set
method for the acl property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getACL().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link CmisAccessControlListType }
- *
- *
+ * @return
+ * possible object is
+ * {@link CmisACLType }
+ *
*/
- public List getACL() {
- if (acl == null) {
- acl = new ArrayList();
- }
- return this.acl;
+ public CmisACLType getACL() {
+ return acl;
}
/**
- * Gets the value of the exact property.
+ * Sets the value of the acl property.
*
+ * @param value
+ * allowed object is
+ * {@link CmisACLType }
+ *
*/
- public boolean isExact() {
- return exact;
- }
-
- /**
- * Sets the value of the exact property.
- *
- */
- public void setExact(boolean value) {
- this.exact = value;
+ public void setACL(CmisACLType value) {
+ this.acl = value;
}
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/ApplyPolicy.java b/source/generated/org/alfresco/repo/cmis/ws/ApplyPolicy.java
index f501613084..7751a54c23 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/ApplyPolicy.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/ApplyPolicy.java
@@ -1,9 +1,11 @@
package org.alfresco.repo.cmis.ws;
+import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@@ -21,6 +23,7 @@ import javax.xml.bind.annotation.XmlType;
* <element name="repositoryId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="policyId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="objectId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * <element name="extension" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -33,7 +36,8 @@ import javax.xml.bind.annotation.XmlType;
@XmlType(name = "", propOrder = {
"repositoryId",
"policyId",
- "objectId"
+ "objectId",
+ "extension"
})
@XmlRootElement(name = "applyPolicy")
public class ApplyPolicy {
@@ -44,6 +48,8 @@ public class ApplyPolicy {
protected String policyId;
@XmlElement(required = true)
protected String objectId;
+ @XmlElementRef(name = "extension", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
+ protected JAXBElement extension;
/**
* Gets the value of the repositoryId property.
@@ -117,4 +123,28 @@ public class ApplyPolicy {
this.objectId = value;
}
+ /**
+ * Gets the value of the extension property.
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
+ *
+ */
+ public JAXBElement 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 value) {
+ this.extension = ((JAXBElement ) value);
+ }
+
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/ApplyPolicyResponse.java b/source/generated/org/alfresco/repo/cmis/ws/ApplyPolicyResponse.java
index 3030447791..cd2fd144d2 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/ApplyPolicyResponse.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/ApplyPolicyResponse.java
@@ -1,8 +1,10 @@
package org.alfresco.repo.cmis.ws;
+import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@@ -17,6 +19,7 @@ import javax.xml.bind.annotation.XmlType;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
+ * <element name="extension" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -26,9 +29,37 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "")
+@XmlType(name = "", propOrder = {
+ "extension"
+})
@XmlRootElement(name = "applyPolicyResponse")
public class ApplyPolicyResponse {
+ @XmlElementRef(name = "extension", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
+ protected JAXBElement extension;
+
+ /**
+ * Gets the value of the extension property.
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
+ *
+ */
+ public JAXBElement 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 value) {
+ this.extension = ((JAXBElement ) value);
+ }
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CancelCheckOut.java b/source/generated/org/alfresco/repo/cmis/ws/CancelCheckOut.java
index 3864081ab3..633d6ed155 100644
--- a/source/generated/org/alfresco/repo/cmis/ws/CancelCheckOut.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CancelCheckOut.java
@@ -1,9 +1,11 @@
package org.alfresco.repo.cmis.ws;
+import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@@ -20,6 +22,7 @@ import javax.xml.bind.annotation.XmlType;
* <sequence>
* <element name="repositoryId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="documentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * <element name="extension" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -31,7 +34,8 @@ import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"repositoryId",
- "documentId"
+ "documentId",
+ "extension"
})
@XmlRootElement(name = "cancelCheckOut")
public class CancelCheckOut {
@@ -40,6 +44,8 @@ public class CancelCheckOut {
protected String repositoryId;
@XmlElement(required = true)
protected String documentId;
+ @XmlElementRef(name = "extension", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
+ protected JAXBElement extension;
/**
* Gets the value of the repositoryId property.
@@ -89,4 +95,28 @@ public class CancelCheckOut {
this.documentId = value;
}
+ /**
+ * Gets the value of the extension property.
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
+ *
+ */
+ public JAXBElement 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 value) {
+ this.extension = ((JAXBElement ) value);
+ }
+
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CancelCheckOutResponse.java b/source/generated/org/alfresco/repo/cmis/ws/CancelCheckOutResponse.java
index 950f4bb137..f917492022 100644
--- a/source/generated/org/alfresco/repo/cmis/ws/CancelCheckOutResponse.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CancelCheckOutResponse.java
@@ -1,8 +1,10 @@
package org.alfresco.repo.cmis.ws;
+import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@@ -17,6 +19,7 @@ import javax.xml.bind.annotation.XmlType;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
+ * <element name="extension" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -26,9 +29,37 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "")
+@XmlType(name = "", propOrder = {
+ "extension"
+})
@XmlRootElement(name = "cancelCheckOutResponse")
public class CancelCheckOutResponse {
+ @XmlElementRef(name = "extension", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
+ protected JAXBElement extension;
+
+ /**
+ * Gets the value of the extension property.
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
+ *
+ */
+ public JAXBElement 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 value) {
+ this.extension = ((JAXBElement ) value);
+ }
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CheckIn.java b/source/generated/org/alfresco/repo/cmis/ws/CheckIn.java
index becf5d1bac..29035182a1 100644
--- a/source/generated/org/alfresco/repo/cmis/ws/CheckIn.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CheckIn.java
@@ -25,12 +25,13 @@ import javax.xml.bind.annotation.XmlType;
* <element name="repositoryId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="documentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="major" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- * <element name="properties" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertiesType" minOccurs="0"/>
- * <element name="contentStream" type="{http://docs.oasis-open.org/ns/cmis/messaging/200901}cmisContentStreamType" minOccurs="0"/>
+ * <element name="properties" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertiesType" minOccurs="0"/>
+ * <element name="contentStream" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisContentStreamType" minOccurs="0"/>
* <element name="checkinComment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="applyPolicies" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="addACEs" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisAccessControlListType" minOccurs="0"/>
- * <element name="removeACEs" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisAccessControlListType" minOccurs="0"/>
+ * <element name="policies" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="addACEs" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisAccessControlListType" minOccurs="0"/>
+ * <element name="removeACEs" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisAccessControlListType" minOccurs="0"/>
+ * <element name="extension" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -47,9 +48,10 @@ import javax.xml.bind.annotation.XmlType;
"properties",
"contentStream",
"checkinComment",
- "applyPolicies",
+ "policies",
"addACEs",
- "removeACEs"
+ "removeACEs",
+ "extension"
})
@XmlRootElement(name = "checkIn")
public class CheckIn {
@@ -58,20 +60,22 @@ public class CheckIn {
protected String repositoryId;
@XmlElement(required = true)
protected String documentId;
- @XmlElementRef(name = "major", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
+ @XmlElementRef(name = "major", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement major;
- @XmlElementRef(name = "properties", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
+ @XmlElementRef(name = "properties", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement properties;
- @XmlElementRef(name = "contentStream", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
+ @XmlElementRef(name = "contentStream", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement contentStream;
- @XmlElementRef(name = "checkinComment", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
+ @XmlElementRef(name = "checkinComment", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement checkinComment;
@XmlElement(nillable = true)
- protected List applyPolicies;
- @XmlElementRef(name = "addACEs", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
+ protected List policies;
+ @XmlElementRef(name = "addACEs", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement addACEs;
- @XmlElementRef(name = "removeACEs", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
+ @XmlElementRef(name = "removeACEs", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement removeACEs;
+ @XmlElementRef(name = "extension", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
+ protected JAXBElement extension;
/**
* Gets the value of the repositoryId property.
@@ -218,18 +222,18 @@ public class CheckIn {
}
/**
- * Gets the value of the applyPolicies property.
+ * Gets the value of the policies property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
- * This is why there is not a set
method for the applyPolicies property.
+ * This is why there is not a set
method for the policies property.
*
*
* For example, to add a new item, do as follows:
*
- * getApplyPolicies().add(newItem);
+ * getPolicies().add(newItem);
*
*
*
@@ -239,11 +243,11 @@ public class CheckIn {
*
*
*/
- public List getApplyPolicies() {
- if (applyPolicies == null) {
- applyPolicies = new ArrayList();
+ public List getPolicies() {
+ if (policies == null) {
+ policies = new ArrayList();
}
- return this.applyPolicies;
+ return this.policies;
}
/**
@@ -294,4 +298,28 @@ public class CheckIn {
this.removeACEs = ((JAXBElement ) value);
}
+ /**
+ * Gets the value of the extension property.
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
+ *
+ */
+ public JAXBElement 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 value) {
+ this.extension = ((JAXBElement ) value);
+ }
+
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CheckInResponse.java b/source/generated/org/alfresco/repo/cmis/ws/CheckInResponse.java
index 7b4e0054bd..39d1298945 100644
--- a/source/generated/org/alfresco/repo/cmis/ws/CheckInResponse.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CheckInResponse.java
@@ -1,9 +1,11 @@
package org.alfresco.repo.cmis.ws;
+import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@@ -19,6 +21,7 @@ import javax.xml.bind.annotation.XmlType;
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="documentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * <element name="extension" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -29,13 +32,16 @@ import javax.xml.bind.annotation.XmlType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
- "documentId"
+ "documentId",
+ "extension"
})
@XmlRootElement(name = "checkInResponse")
public class CheckInResponse {
@XmlElement(required = true)
protected String documentId;
+ @XmlElementRef(name = "extension", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
+ protected JAXBElement extension;
/**
* Gets the value of the documentId property.
@@ -61,4 +67,28 @@ public class CheckInResponse {
this.documentId = value;
}
+ /**
+ * Gets the value of the extension property.
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
+ *
+ */
+ public JAXBElement 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 value) {
+ this.extension = ((JAXBElement ) value);
+ }
+
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CheckOut.java b/source/generated/org/alfresco/repo/cmis/ws/CheckOut.java
index f3a3f9059e..fd9fd11b37 100644
--- a/source/generated/org/alfresco/repo/cmis/ws/CheckOut.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CheckOut.java
@@ -1,9 +1,11 @@
package org.alfresco.repo.cmis.ws;
+import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@@ -20,6 +22,7 @@ import javax.xml.bind.annotation.XmlType;
* <sequence>
* <element name="repositoryId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="documentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * <element name="extension" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -31,7 +34,8 @@ import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"repositoryId",
- "documentId"
+ "documentId",
+ "extension"
})
@XmlRootElement(name = "checkOut")
public class CheckOut {
@@ -40,6 +44,8 @@ public class CheckOut {
protected String repositoryId;
@XmlElement(required = true)
protected String documentId;
+ @XmlElementRef(name = "extension", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
+ protected JAXBElement extension;
/**
* Gets the value of the repositoryId property.
@@ -89,4 +95,28 @@ public class CheckOut {
this.documentId = value;
}
+ /**
+ * Gets the value of the extension property.
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
+ *
+ */
+ public JAXBElement 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 value) {
+ this.extension = ((JAXBElement ) value);
+ }
+
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CheckOutResponse.java b/source/generated/org/alfresco/repo/cmis/ws/CheckOutResponse.java
index 416e6ff4d9..7a5394267f 100644
--- a/source/generated/org/alfresco/repo/cmis/ws/CheckOutResponse.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CheckOutResponse.java
@@ -1,9 +1,11 @@
package org.alfresco.repo.cmis.ws;
+import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@@ -20,6 +22,7 @@ import javax.xml.bind.annotation.XmlType;
* <sequence>
* <element name="documentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="contentCopied" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * <element name="extension" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -31,7 +34,8 @@ import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"documentId",
- "contentCopied"
+ "contentCopied",
+ "extension"
})
@XmlRootElement(name = "checkOutResponse")
public class CheckOutResponse {
@@ -39,6 +43,8 @@ public class CheckOutResponse {
@XmlElement(required = true)
protected String documentId;
protected boolean contentCopied;
+ @XmlElementRef(name = "extension", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
+ protected JAXBElement extension;
/**
* Gets the value of the documentId property.
@@ -80,4 +86,28 @@ public class CheckOutResponse {
this.contentCopied = value;
}
+ /**
+ * Gets the value of the extension property.
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
+ *
+ */
+ public JAXBElement 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 value) {
+ this.extension = ((JAXBElement ) value);
+ }
+
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisACLCapabilityType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisACLCapabilityType.java
index b7c3885bae..448de78bdc 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisACLCapabilityType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisACLCapabilityType.java
@@ -19,9 +19,9 @@ import javax.xml.bind.annotation.XmlType;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
- * <element name="setType" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumACLPropagation"/>
- * <element name="permissions" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPermissionDefinition" maxOccurs="unbounded"/>
- * <element name="mapping" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPermissionMapping" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="propagation" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumACLPropagation"/>
+ * <element name="permissions" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPermissionDefinition" maxOccurs="unbounded"/>
+ * <element name="mapping" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPermissionMapping" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -31,41 +31,41 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisACLCapabilityType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
- "setType",
+@XmlType(name = "cmisACLCapabilityType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
+ "propagation",
"permissions",
"mapping"
})
public class CmisACLCapabilityType {
@XmlElement(required = true)
- protected EnumACLPropagation setType;
+ protected EnumACLPropagation propagation;
@XmlElement(required = true)
protected List permissions;
protected List mapping;
/**
- * Gets the value of the setType property.
+ * Gets the value of the propagation property.
*
* @return
* possible object is
* {@link EnumACLPropagation }
*
*/
- public EnumACLPropagation getSetType() {
- return setType;
+ public EnumACLPropagation getPropagation() {
+ return propagation;
}
/**
- * Sets the value of the setType property.
+ * Sets the value of the propagation property.
*
* @param value
* allowed object is
* {@link EnumACLPropagation }
*
*/
- public void setSetType(EnumACLPropagation value) {
- this.setType = value;
+ public void setPropagation(EnumACLPropagation value) {
+ this.propagation = value;
}
/**
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisAccessControlEntryType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisAccessControlEntryType.java
index 3ae30ed016..4b6f6d50b0 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisAccessControlEntryType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisAccessControlEntryType.java
@@ -8,6 +8,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
+import org.w3c.dom.Element;
/**
@@ -20,8 +21,8 @@ import javax.xml.bind.annotation.XmlType;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
- * <element name="principal" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisAccessControlPrincipalType"/>
- * <element name="permission" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * <element name="principal" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisAccessControlPrincipalType"/>
+ * <element name="permission" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
* <element name="direct" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <any/>
* </sequence>
@@ -33,7 +34,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisAccessControlEntryType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisAccessControlEntryType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"principal",
"permission",
"direct",
@@ -44,7 +45,7 @@ public class CmisAccessControlEntryType {
@XmlElement(required = true)
protected CmisAccessControlPrincipalType principal;
@XmlElement(required = true)
- protected String permission;
+ protected List permission;
protected boolean direct;
@XmlAnyElement(lax = true)
protected List any;
@@ -76,25 +77,30 @@ public class CmisAccessControlEntryType {
/**
* Gets the value of the permission property.
*
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getPermission() {
- return permission;
- }
-
- /**
- * Sets the value of the permission property.
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set
method for the permission property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getPermission().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link String }
+ *
*
- * @param value
- * allowed object is
- * {@link String }
- *
*/
- public void setPermission(String value) {
- this.permission = value;
+ public List getPermission() {
+ if (permission == null) {
+ permission = new ArrayList();
+ }
+ return this.permission;
}
/**
@@ -127,12 +133,13 @@ public class CmisAccessControlEntryType {
*
* getAny().add(newItem);
*
- *
+ *
*
*
* Objects of the following type(s) are allowed in the list
- * {@link Object }
- *
+ * {@link Element }
+ * {@link Object }
+ *
*
*/
public List getAny() {
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisAccessControlListType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisAccessControlListType.java
index 151111fb50..7312a33abe 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisAccessControlListType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisAccessControlListType.java
@@ -8,6 +8,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
+import org.w3c.dom.Element;
/**
@@ -20,7 +21,7 @@ import javax.xml.bind.annotation.XmlType;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
- * <element name="permission" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisAccessControlEntryType" maxOccurs="unbounded"/>
+ * <element name="permission" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisAccessControlEntryType" maxOccurs="unbounded"/>
* <any/>
* </sequence>
* </restriction>
@@ -31,7 +32,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisAccessControlListType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisAccessControlListType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"permission",
"any"
})
@@ -56,12 +57,12 @@ public class CmisAccessControlListType {
*
* getPermission().add(newItem);
*
- *
+ *
*
*
* Objects of the following type(s) are allowed in the list
- * {@link CmisAccessControlEntryType }
- *
+ * {@link CmisAccessControlEntryType }
+ *
*
*/
public List getPermission() {
@@ -85,12 +86,13 @@ public class CmisAccessControlListType {
*
* getAny().add(newItem);
*
- *
+ *
*
*
* Objects of the following type(s) are allowed in the list
- * {@link Object }
- *
+ * {@link Element }
+ * {@link Object }
+ *
*
*/
public List getAny() {
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisAccessControlPrincipalType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisAccessControlPrincipalType.java
index 3923e52304..2a199a695b 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisAccessControlPrincipalType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisAccessControlPrincipalType.java
@@ -8,6 +8,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
+import org.w3c.dom.Element;
/**
@@ -31,7 +32,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisAccessControlPrincipalType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisAccessControlPrincipalType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"principalId",
"any"
})
@@ -80,12 +81,13 @@ public class CmisAccessControlPrincipalType {
*
* getAny().add(newItem);
*
- *
+ *
*
*
* Objects of the following type(s) are allowed in the list
- * {@link Object }
- *
+ * {@link Element }
+ * {@link Object }
+ *
*
*/
public List getAny() {
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisAllowableActionsType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisAllowableActionsType.java
index 4a0e1a318e..bdd5c38aac 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisAllowableActionsType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisAllowableActionsType.java
@@ -27,7 +27,7 @@ import org.w3c.dom.Element;
* <element name="canDeleteObject" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="canUpdateProperties" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="canGetProperties" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- * <element name="canGetRelationships" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * <element name="canGetObjectRelationships" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="canGetObjectParents" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="canGetFolderParent" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="canGetDescendants" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
@@ -55,7 +55,7 @@ import org.w3c.dom.Element;
* <element name="canApplyACL" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <any/>
* </sequence>
- * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisUndefinedAttribute"/>
+ * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisUndefinedAttribute"/>
* </restriction>
* </complexContent>
* </complexType>
@@ -64,11 +64,11 @@ import org.w3c.dom.Element;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisAllowableActionsType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisAllowableActionsType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"canDeleteObject",
"canUpdateProperties",
"canGetProperties",
- "canGetRelationships",
+ "canGetObjectRelationships",
"canGetObjectParents",
"canGetFolderParent",
"canGetDescendants",
@@ -101,7 +101,7 @@ public class CmisAllowableActionsType {
protected Boolean canDeleteObject;
protected Boolean canUpdateProperties;
protected Boolean canGetProperties;
- protected Boolean canGetRelationships;
+ protected Boolean canGetObjectRelationships;
protected Boolean canGetObjectParents;
protected Boolean canGetFolderParent;
protected Boolean canGetDescendants;
@@ -205,27 +205,27 @@ public class CmisAllowableActionsType {
}
/**
- * Gets the value of the canGetRelationships property.
+ * Gets the value of the canGetObjectRelationships property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
- public Boolean isCanGetRelationships() {
- return canGetRelationships;
+ public Boolean isCanGetObjectRelationships() {
+ return canGetObjectRelationships;
}
/**
- * Sets the value of the canGetRelationships property.
+ * Sets the value of the canGetObjectRelationships property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
- public void setCanGetRelationships(Boolean value) {
- this.canGetRelationships = value;
+ public void setCanGetObjectRelationships(Boolean value) {
+ this.canGetObjectRelationships = value;
}
/**
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisChangeEventType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisChangeEventType.java
index 57b780067e..8cb28b90b3 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisChangeEventType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisChangeEventType.java
@@ -23,7 +23,7 @@ import org.w3c.dom.Element;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
- * <element name="changeType" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumTypeOfChanges"/>
+ * <element name="changeType" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumTypeOfChanges"/>
* <element name="changeTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <any/>
* </sequence>
@@ -35,7 +35,7 @@ import org.w3c.dom.Element;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisChangeEventType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisChangeEventType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"changeType",
"changeTime",
"any"
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisChoice.java b/source/generated/org/alfresco/repo/cmis/ws/CmisChoice.java
index 8310fe7233..770d771314 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisChoice.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisChoice.java
@@ -22,7 +22,7 @@ import javax.xml.namespace.QName;
* <complexType name="cmisChoice">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisUndefinedAttribute"/>
+ * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisUndefinedAttribute"/>
* <attribute name="displayName" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* </restriction>
* </complexContent>
@@ -32,15 +32,13 @@ import javax.xml.namespace.QName;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisChoice", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901")
+@XmlType(name = "cmisChoice", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/")
@XmlSeeAlso({
CmisChoiceId.class,
CmisChoiceDateTime.class,
CmisChoiceDecimal.class,
CmisChoiceBoolean.class,
- CmisChoiceXml.class,
CmisChoiceHtml.class,
- CmisChoiceXhtml.class,
CmisChoiceUri.class,
CmisChoiceInteger.class,
CmisChoiceString.class
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceBoolean.java b/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceBoolean.java
index 2bffb7d8c8..125dccaee9 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceBoolean.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceBoolean.java
@@ -17,9 +17,10 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisChoiceBoolean">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChoice">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoice">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}boolean" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoiceBoolean" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -29,8 +30,9 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisChoiceBoolean", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
- "value"
+@XmlType(name = "cmisChoiceBoolean", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
+ "value",
+ "choice"
})
public class CmisChoiceBoolean
extends CmisChoice
@@ -38,6 +40,7 @@ public class CmisChoiceBoolean
@XmlElement(type = Boolean.class)
protected List value;
+ protected List choice;
/**
* Gets the value of the value property.
@@ -68,4 +71,33 @@ public class CmisChoiceBoolean
return this.value;
}
+ /**
+ * Gets the value of the choice property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set
method for the choice property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getChoice().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link CmisChoiceBoolean }
+ *
+ *
+ */
+ public List getChoice() {
+ if (choice == null) {
+ choice = new ArrayList();
+ }
+ return this.choice;
+ }
+
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceDateTime.java b/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceDateTime.java
index 94b8d87947..cdbf46c13d 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceDateTime.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceDateTime.java
@@ -18,9 +18,10 @@ import javax.xml.datatype.XMLGregorianCalendar;
*
* <complexType name="cmisChoiceDateTime">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChoice">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoice">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}dateTime" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoiceDateTime" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -30,8 +31,9 @@ import javax.xml.datatype.XMLGregorianCalendar;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisChoiceDateTime", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
- "value"
+@XmlType(name = "cmisChoiceDateTime", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
+ "value",
+ "choice"
})
public class CmisChoiceDateTime
extends CmisChoice
@@ -39,6 +41,7 @@ public class CmisChoiceDateTime
@XmlSchemaType(name = "dateTime")
protected List value;
+ protected List choice;
/**
* Gets the value of the value property.
@@ -69,4 +72,33 @@ public class CmisChoiceDateTime
return this.value;
}
+ /**
+ * Gets the value of the choice property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set
method for the choice property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getChoice().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link CmisChoiceDateTime }
+ *
+ *
+ */
+ public List getChoice() {
+ if (choice == null) {
+ choice = new ArrayList();
+ }
+ return this.choice;
+ }
+
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceDecimal.java b/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceDecimal.java
index c0f161f4f7..835def4bd2 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceDecimal.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceDecimal.java
@@ -17,9 +17,10 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisChoiceDecimal">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChoice">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoice">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}decimal" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoiceDecimal" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -29,14 +30,16 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisChoiceDecimal", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
- "value"
+@XmlType(name = "cmisChoiceDecimal", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
+ "value",
+ "choice"
})
public class CmisChoiceDecimal
extends CmisChoice
{
protected List value;
+ protected List choice;
/**
* Gets the value of the value property.
@@ -67,4 +70,33 @@ public class CmisChoiceDecimal
return this.value;
}
+ /**
+ * Gets the value of the choice property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set
method for the choice property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getChoice().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link CmisChoiceDecimal }
+ *
+ *
+ */
+ public List getChoice() {
+ if (choice == null) {
+ choice = new ArrayList();
+ }
+ return this.choice;
+ }
+
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceHtml.java b/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceHtml.java
index 8512737b9a..2a7f506470 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceHtml.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceHtml.java
@@ -5,9 +5,7 @@ import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlType;
-import org.w3c.dom.Element;
/**
@@ -18,19 +16,10 @@ import org.w3c.dom.Element;
*
* <complexType name="cmisChoiceHtml">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChoice">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoice">
* <sequence>
- * <element name="value" maxOccurs="unbounded" minOccurs="0">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <any/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
+ * <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoiceHtml" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -40,14 +29,16 @@ import org.w3c.dom.Element;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisChoiceHtml", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
- "value"
+@XmlType(name = "cmisChoiceHtml", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
+ "value",
+ "choice"
})
public class CmisChoiceHtml
extends CmisChoice
{
- protected List value;
+ protected List value;
+ protected List choice;
/**
* Gets the value of the value property.
@@ -67,76 +58,44 @@ public class CmisChoiceHtml
*
*
* Objects of the following type(s) are allowed in the list
- * {@link CmisChoiceHtml.Value }
+ * {@link String }
*
*
*/
- public List getValue() {
+ public List getValue() {
if (value == null) {
- value = new ArrayList();
+ value = new ArrayList();
}
return this.value;
}
-
/**
- * Java class for anonymous complex type.
+ * Gets the value of the choice property.
*
- *
The following schema fragment specifies the expected content contained within this class.
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set
method for the choice property.
*
+ *
+ * For example, to add a new item, do as follows:
*
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <any/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
+ * getChoice().add(newItem);
*
*
*
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link CmisChoiceHtml }
+ *
+ *
*/
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "", propOrder = {
- "any"
- })
- public static class Value {
-
- @XmlAnyElement(lax = true)
- protected List any;
-
- /**
- * Gets the value of the any property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set
method for the any property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getAny().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link Element }
- * {@link Object }
- *
- *
- */
- public List getAny() {
- if (any == null) {
- any = new ArrayList();
- }
- return this.any;
+ public List getChoice() {
+ if (choice == null) {
+ choice = new ArrayList();
}
-
+ return this.choice;
}
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceId.java b/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceId.java
index 102f27a5da..602c261c52 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceId.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceId.java
@@ -5,8 +5,6 @@ import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlAttribute;
-import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
@@ -18,11 +16,11 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisChoiceId">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChoice">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoice">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoiceId" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
- * <attribute ref="{http://docs.oasis-open.org/ns/cmis/core/200901}href"/>
* </extension>
* </complexContent>
* </complexType>
@@ -31,17 +29,16 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisChoiceId", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
- "value"
+@XmlType(name = "cmisChoiceId", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
+ "value",
+ "choice"
})
public class CmisChoiceId
extends CmisChoice
{
protected List value;
- @XmlAttribute(namespace = "http://docs.oasis-open.org/ns/cmis/core/200901")
- @XmlSchemaType(name = "anyURI")
- protected String href;
+ protected List choice;
/**
* Gets the value of the value property.
@@ -73,27 +70,32 @@ public class CmisChoiceId
}
/**
- * Gets the value of the href property.
+ * Gets the value of the choice property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set
method for the choice property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getChoice().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link CmisChoiceId }
*
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getHref() {
- return href;
- }
-
- /**
- * Sets the value of the href property.
*
- * @param value
- * allowed object is
- * {@link String }
- *
*/
- public void setHref(String value) {
- this.href = value;
+ public List getChoice() {
+ if (choice == null) {
+ choice = new ArrayList();
+ }
+ return this.choice;
}
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceInteger.java b/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceInteger.java
index 0a7c828764..cf873ec04a 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceInteger.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceInteger.java
@@ -17,9 +17,10 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisChoiceInteger">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChoice">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoice">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}integer" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoiceInteger" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -29,14 +30,16 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisChoiceInteger", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
- "value"
+@XmlType(name = "cmisChoiceInteger", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
+ "value",
+ "choice"
})
public class CmisChoiceInteger
extends CmisChoice
{
protected List value;
+ protected List choice;
/**
* Gets the value of the value property.
@@ -67,4 +70,33 @@ public class CmisChoiceInteger
return this.value;
}
+ /**
+ * Gets the value of the choice property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set
method for the choice property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getChoice().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link CmisChoiceInteger }
+ *
+ *
+ */
+ public List getChoice() {
+ if (choice == null) {
+ choice = new ArrayList();
+ }
+ return this.choice;
+ }
+
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceString.java b/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceString.java
index bb0e8e55c0..50d2f3e1b2 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceString.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceString.java
@@ -16,9 +16,10 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisChoiceString">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChoice">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoice">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoiceString" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -28,14 +29,16 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisChoiceString", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
- "value"
+@XmlType(name = "cmisChoiceString", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
+ "value",
+ "choice"
})
public class CmisChoiceString
extends CmisChoice
{
protected List value;
+ protected List choice;
/**
* Gets the value of the value property.
@@ -66,4 +69,33 @@ public class CmisChoiceString
return this.value;
}
+ /**
+ * Gets the value of the choice property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set
method for the choice property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getChoice().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link CmisChoiceString }
+ *
+ *
+ */
+ public List getChoice() {
+ if (choice == null) {
+ choice = new ArrayList();
+ }
+ return this.choice;
+ }
+
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceUri.java b/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceUri.java
index 27a1160ab7..756c72adc8 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceUri.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisChoiceUri.java
@@ -17,9 +17,10 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisChoiceUri">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChoice">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoice">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}anyURI" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoiceUri" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -29,8 +30,9 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisChoiceUri", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
- "value"
+@XmlType(name = "cmisChoiceUri", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
+ "value",
+ "choice"
})
public class CmisChoiceUri
extends CmisChoice
@@ -38,6 +40,7 @@ public class CmisChoiceUri
@XmlSchemaType(name = "anyURI")
protected List value;
+ protected List choice;
/**
* Gets the value of the value property.
@@ -68,4 +71,33 @@ public class CmisChoiceUri
return this.value;
}
+ /**
+ * Gets the value of the choice property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set
method for the choice property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getChoice().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link CmisChoiceUri }
+ *
+ *
+ */
+ public List getChoice() {
+ if (choice == null) {
+ choice = new ArrayList();
+ }
+ return this.choice;
+ }
+
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisContentStreamType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisContentStreamType.java
index 5518bb4fba..5558f59dc6 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisContentStreamType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisContentStreamType.java
@@ -13,7 +13,6 @@ import javax.xml.bind.annotation.XmlAnyAttribute;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlMimeType;
-import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
import org.w3c.dom.Element;
@@ -29,14 +28,13 @@ import org.w3c.dom.Element;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
- * <element name="length" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ * <element name="length" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* <element name="mimeType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="filename" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="uri" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
* <element name="stream" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
* <any/>
* </sequence>
- * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisUndefinedAttribute"/>
+ * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisUndefinedAttribute"/>
* </restriction>
* </complexContent>
* </complexType>
@@ -49,18 +47,14 @@ import org.w3c.dom.Element;
"length",
"mimeType",
"filename",
- "uri",
"stream",
"any"
})
public class CmisContentStreamType {
- @XmlElement(required = true)
protected BigInteger length;
protected String mimeType;
protected String filename;
- @XmlSchemaType(name = "anyURI")
- protected String uri;
@XmlElement(required = true)
@XmlMimeType("application/octet-stream")
protected DataHandler stream;
@@ -141,30 +135,6 @@ public class CmisContentStreamType {
this.filename = value;
}
- /**
- * Gets the value of the uri property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getUri() {
- return uri;
- }
-
- /**
- * Sets the value of the uri property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setUri(String value) {
- this.uri = value;
- }
-
/**
* Gets the value of the stream property.
*
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisException.java b/source/generated/org/alfresco/repo/cmis/ws/CmisException.java
index 5536e47ad0..c0994b54d7 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisException.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisException.java
@@ -6,14 +6,14 @@ import javax.xml.ws.WebFault;
/**
* This class was generated by Apache CXF 2.1.2
- * Fri Jul 24 09:58:28 EEST 2009
+ * Mon Oct 12 11:20:37 EEST 2009
* Generated source version: 2.1.2
*
*/
-@WebFault(name = "cmisFault", targetNamespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901")
+@WebFault(name = "cmisFault", targetNamespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/")
public class CmisException extends Exception {
- public static final long serialVersionUID = 20090724095828L;
+ public static final long serialVersionUID = 20091012112037L;
private org.alfresco.repo.cmis.ws.CmisFaultType cmisFault;
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisFaultType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisFaultType.java
index 8589d2e6e1..31cc2ced85 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisFaultType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisFaultType.java
@@ -21,7 +21,7 @@ import javax.xml.bind.annotation.XmlType;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
- * <element name="type" type="{http://docs.oasis-open.org/ns/cmis/messaging/200901}enumServiceException"/>
+ * <element name="type" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}enumServiceException"/>
* <element name="code" type="{http://www.w3.org/2001/XMLSchema}integer"/>
* <element name="message" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <any/>
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisObjectType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisObjectType.java
index c74e3094b8..ab5a356afe 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisObjectType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisObjectType.java
@@ -24,17 +24,17 @@ import org.w3c.dom.Element;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
- * <element name="properties" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertiesType" minOccurs="0"/>
- * <element ref="{http://docs.oasis-open.org/ns/cmis/core/200901}allowableActions" minOccurs="0"/>
- * <element name="relationship" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisObjectType" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="child" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisObjectType" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="changeEventInfo" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChangeEventType" minOccurs="0"/>
- * <element name="acl" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisAccessControlListType" minOccurs="0"/>
+ * <element name="properties" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertiesType" minOccurs="0"/>
+ * <element name="allowableActions" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisAllowableActionsType" minOccurs="0"/>
+ * <element name="relationship" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisObjectType" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="changeEventInfo" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChangeEventType" minOccurs="0"/>
+ * <element name="acl" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisAccessControlListType" minOccurs="0"/>
* <element name="exactACL" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- * <element name="rendition" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisRenditionType" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="policyIds" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisListOfIdsType" minOccurs="0"/>
+ * <element name="rendition" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisRenditionType" maxOccurs="unbounded" minOccurs="0"/>
* <any/>
* </sequence>
- * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisUndefinedAttribute"/>
+ * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisUndefinedAttribute"/>
* </restriction>
* </complexContent>
* </complexType>
@@ -43,14 +43,14 @@ import org.w3c.dom.Element;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisObjectType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisObjectType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"properties",
"allowableActions",
"relationship",
- "child",
"changeEventInfo",
"acl",
"exactACL",
+ "policyIds",
"rendition",
"any"
})
@@ -59,10 +59,10 @@ public class CmisObjectType {
protected CmisPropertiesType properties;
protected CmisAllowableActionsType allowableActions;
protected List relationship;
- protected List child;
protected CmisChangeEventType changeEventInfo;
protected CmisAccessControlListType acl;
protected Boolean exactACL;
+ protected CmisListOfIdsType policyIds;
protected List rendition;
@XmlAnyElement(lax = true)
protected List any;
@@ -146,35 +146,6 @@ public class CmisObjectType {
return this.relationship;
}
- /**
- * Gets the value of the child property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set
method for the child property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getChild().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link CmisObjectType }
- *
- *
- */
- public List getChild() {
- if (child == null) {
- child = new ArrayList();
- }
- return this.child;
- }
-
/**
* Gets the value of the changeEventInfo property.
*
@@ -247,6 +218,30 @@ public class CmisObjectType {
this.exactACL = value;
}
+ /**
+ * Gets the value of the policyIds property.
+ *
+ * @return
+ * possible object is
+ * {@link CmisListOfIdsType }
+ *
+ */
+ public CmisListOfIdsType getPolicyIds() {
+ return policyIds;
+ }
+
+ /**
+ * Sets the value of the policyIds property.
+ *
+ * @param value
+ * allowed object is
+ * {@link CmisListOfIdsType }
+ *
+ */
+ public void setPolicyIds(CmisListOfIdsType value) {
+ this.policyIds = value;
+ }
+
/**
* Gets the value of the rendition property.
*
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPermissionDefinition.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPermissionDefinition.java
index 07b5dcad40..15d5cf0f8b 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPermissionDefinition.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPermissionDefinition.java
@@ -33,7 +33,7 @@ import org.w3c.dom.Element;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPermissionDefinition", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPermissionDefinition", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"permission",
"description",
"any"
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPermissionMapping.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPermissionMapping.java
index f6b0a0e578..e5f208a86b 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPermissionMapping.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPermissionMapping.java
@@ -1,11 +1,14 @@
package org.alfresco.repo.cmis.ws;
+import java.util.ArrayList;
+import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
+import org.w3c.dom.Element;
/**
@@ -18,8 +21,8 @@ import javax.xml.bind.annotation.XmlType;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
- * <element name="key" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumAllowableActionsKey"/>
- * <element name="permission" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * <element name="key" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumAllowableActionsKey"/>
+ * <element name="permission" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
* <any/>
* </sequence>
* </restriction>
@@ -30,7 +33,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPermissionMapping", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPermissionMapping", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"key",
"permission",
"any"
@@ -40,9 +43,9 @@ public class CmisPermissionMapping {
@XmlElement(required = true)
protected EnumAllowableActionsKey key;
@XmlElement(required = true)
- protected String permission;
+ protected List permission;
@XmlAnyElement(lax = true)
- protected Object any;
+ protected List any;
/**
* Gets the value of the key property.
@@ -71,49 +74,60 @@ public class CmisPermissionMapping {
/**
* Gets the value of the permission property.
*
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getPermission() {
- return permission;
- }
-
- /**
- * Sets the value of the permission property.
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set
method for the permission property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getPermission().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link String }
+ *
*
- * @param value
- * allowed object is
- * {@link String }
- *
*/
- public void setPermission(String value) {
- this.permission = value;
+ public List getPermission() {
+ if (permission == null) {
+ permission = new ArrayList();
+ }
+ return this.permission;
}
/**
* Gets the value of the any property.
*
- * @return
- * possible object is
- * {@link Object }
- *
- */
- public Object getAny() {
- return any;
- }
-
- /**
- * Sets the value of the any property.
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set
method for the any property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getAny().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link Element }
+ * {@link Object }
+ *
*
- * @param value
- * allowed object is
- * {@link Object }
- *
*/
- public void setAny(Object value) {
- this.any = value;
+ public List getAny() {
+ if (any == null) {
+ any = new ArrayList();
+ }
+ return this.any;
}
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertiesType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertiesType.java
index 0f814dfef9..8b3249ee25 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertiesType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertiesType.java
@@ -27,20 +27,18 @@ import org.w3c.dom.Element;
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <choice maxOccurs="unbounded" minOccurs="0">
- * <element name="propertyBoolean" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyBoolean"/>
- * <element name="propertyId" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyId"/>
- * <element name="propertyInteger" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyInteger"/>
- * <element name="propertyDateTime" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyDateTime"/>
- * <element name="propertyDecimal" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyDecimal"/>
- * <element name="propertyHtml" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyHtml"/>
- * <element name="propertyXhtml" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyXhtml"/>
- * <element name="propertyString" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyString"/>
- * <element name="propertyUri" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyUri"/>
- * <element name="propertyXml" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyXml"/>
+ * <element name="propertyBoolean" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyBoolean"/>
+ * <element name="propertyId" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyId"/>
+ * <element name="propertyInteger" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyInteger"/>
+ * <element name="propertyDateTime" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyDateTime"/>
+ * <element name="propertyDecimal" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyDecimal"/>
+ * <element name="propertyHtml" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyHtml"/>
+ * <element name="propertyString" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyString"/>
+ * <element name="propertyUri" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyUri"/>
* </choice>
* <any/>
* </sequence>
- * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisUndefinedAttribute"/>
+ * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisUndefinedAttribute"/>
* </restriction>
* </complexContent>
* </complexType>
@@ -49,23 +47,21 @@ import org.w3c.dom.Element;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertiesType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertiesType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"property",
"any"
})
public class CmisPropertiesType {
@XmlElements({
- @XmlElement(name = "propertyXhtml", type = CmisPropertyXhtml.class, nillable = true),
- @XmlElement(name = "propertyHtml", type = CmisPropertyHtml.class, nillable = true),
- @XmlElement(name = "propertyInteger", type = CmisPropertyInteger.class, nillable = true),
- @XmlElement(name = "propertyString", type = CmisPropertyString.class, nillable = true),
- @XmlElement(name = "propertyUri", type = CmisPropertyUri.class, nillable = true),
@XmlElement(name = "propertyId", type = CmisPropertyId.class, nillable = true),
- @XmlElement(name = "propertyDateTime", type = CmisPropertyDateTime.class, nillable = true),
- @XmlElement(name = "propertyXml", type = CmisPropertyXml.class, nillable = true),
+ @XmlElement(name = "propertyUri", type = CmisPropertyUri.class, nillable = true),
+ @XmlElement(name = "propertyInteger", type = CmisPropertyInteger.class, nillable = true),
@XmlElement(name = "propertyDecimal", type = CmisPropertyDecimal.class, nillable = true),
- @XmlElement(name = "propertyBoolean", type = CmisPropertyBoolean.class, nillable = true)
+ @XmlElement(name = "propertyBoolean", type = CmisPropertyBoolean.class, nillable = true),
+ @XmlElement(name = "propertyHtml", type = CmisPropertyHtml.class, nillable = true),
+ @XmlElement(name = "propertyDateTime", type = CmisPropertyDateTime.class, nillable = true),
+ @XmlElement(name = "propertyString", type = CmisPropertyString.class, nillable = true)
})
protected List property;
@XmlAnyElement(lax = true)
@@ -91,16 +87,14 @@ public class CmisPropertiesType {
*
*
* Objects of the following type(s) are allowed in the list
- * {@link CmisPropertyXhtml }
- * {@link CmisPropertyHtml }
- * {@link CmisPropertyInteger }
- * {@link CmisPropertyString }
- * {@link CmisPropertyUri }
* {@link CmisPropertyId }
- * {@link CmisPropertyDateTime }
- * {@link CmisPropertyXml }
+ * {@link CmisPropertyUri }
+ * {@link CmisPropertyInteger }
* {@link CmisPropertyDecimal }
* {@link CmisPropertyBoolean }
+ * {@link CmisPropertyHtml }
+ * {@link CmisPropertyDateTime }
+ * {@link CmisPropertyString }
*
*
*/
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisProperty.java b/source/generated/org/alfresco/repo/cmis/ws/CmisProperty.java
index 0bbe21f49c..a1ca6baebf 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisProperty.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisProperty.java
@@ -22,10 +22,11 @@ import javax.xml.namespace.QName;
* <complexType name="cmisProperty">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisUndefinedAttribute"/>
- * <attribute name="pdid" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- * <attribute name="localname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- * <attribute name="displayname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
+ * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisUndefinedAttribute"/>
+ * <attribute name="propertyDefinitionId" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
+ * <attribute name="localName" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
+ * <attribute name="displayName" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
+ * <attribute name="queryName" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* </restriction>
* </complexContent>
* </complexType>
@@ -34,14 +35,12 @@ import javax.xml.namespace.QName;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisProperty", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901")
+@XmlType(name = "cmisProperty", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/")
@XmlSeeAlso({
CmisPropertyDecimal.class,
CmisPropertyInteger.class,
- CmisPropertyXhtml.class,
CmisPropertyDateTime.class,
CmisPropertyUri.class,
- CmisPropertyXml.class,
CmisPropertyHtml.class,
CmisPropertyBoolean.class,
CmisPropertyString.class,
@@ -49,88 +48,115 @@ import javax.xml.namespace.QName;
})
public class CmisProperty {
- @XmlAttribute(required = true)
- @XmlSchemaType(name = "anySimpleType")
- protected String pdid;
@XmlAttribute
@XmlSchemaType(name = "anySimpleType")
- protected String localname;
+ protected String propertyDefinitionId;
@XmlAttribute
@XmlSchemaType(name = "anySimpleType")
- protected String displayname;
+ protected String localName;
+ @XmlAttribute
+ @XmlSchemaType(name = "anySimpleType")
+ protected String displayName;
+ @XmlAttribute
+ @XmlSchemaType(name = "anySimpleType")
+ protected String queryName;
@XmlAnyAttribute
private Map otherAttributes = new HashMap();
/**
- * Gets the value of the pdid property.
+ * Gets the value of the propertyDefinitionId property.
*
* @return
* possible object is
* {@link String }
*
*/
- public String getPdid() {
- return pdid;
+ public String getPropertyDefinitionId() {
+ return propertyDefinitionId;
}
/**
- * Sets the value of the pdid property.
+ * Sets the value of the propertyDefinitionId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
- public void setPdid(String value) {
- this.pdid = value;
+ public void setPropertyDefinitionId(String value) {
+ this.propertyDefinitionId = value;
}
/**
- * Gets the value of the localname property.
+ * Gets the value of the localName property.
*
* @return
* possible object is
* {@link String }
*
*/
- public String getLocalname() {
- return localname;
+ public String getLocalName() {
+ return localName;
}
/**
- * Sets the value of the localname property.
+ * Sets the value of the localName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
- public void setLocalname(String value) {
- this.localname = value;
+ public void setLocalName(String value) {
+ this.localName = value;
}
/**
- * Gets the value of the displayname property.
+ * Gets the value of the displayName property.
*
* @return
* possible object is
* {@link String }
*
*/
- public String getDisplayname() {
- return displayname;
+ public String getDisplayName() {
+ return displayName;
}
/**
- * Sets the value of the displayname property.
+ * Sets the value of the displayName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
- public void setDisplayname(String value) {
- this.displayname = value;
+ public void setDisplayName(String value) {
+ this.displayName = value;
+ }
+
+ /**
+ * Gets the value of the queryName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getQueryName() {
+ return queryName;
+ }
+
+ /**
+ * Sets the value of the queryName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setQueryName(String value) {
+ this.queryName = value;
}
/**
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyBoolean.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyBoolean.java
index da46187a59..95a8739381 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyBoolean.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyBoolean.java
@@ -17,7 +17,7 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisPropertyBoolean">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisProperty">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisProperty">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}boolean" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
@@ -29,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyBoolean", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyBoolean", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"value"
})
public class CmisPropertyBoolean
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyBooleanDefinitionType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyBooleanDefinitionType.java
index ce8bb53124..e4c7b0988f 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyBooleanDefinitionType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyBooleanDefinitionType.java
@@ -16,10 +16,10 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisPropertyBooleanDefinitionType">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyDefinitionType">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyDefinitionType">
* <sequence>
- * <element name="defaultValue" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyBoolean" minOccurs="0"/>
- * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChoiceBoolean" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="defaultValue" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyBoolean" minOccurs="0"/>
+ * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoiceBoolean" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -29,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyBooleanDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyBooleanDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"defaultValue",
"choice"
})
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDateTime.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDateTime.java
index 4ff1e3bd86..07e6d60e44 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDateTime.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDateTime.java
@@ -18,7 +18,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
*
* <complexType name="cmisPropertyDateTime">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisProperty">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisProperty">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}dateTime" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
@@ -30,7 +30,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyDateTime", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyDateTime", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"value"
})
public class CmisPropertyDateTime
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDateTimeDefinitionType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDateTimeDefinitionType.java
index 85ffa72d67..9147e8150e 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDateTimeDefinitionType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDateTimeDefinitionType.java
@@ -16,10 +16,10 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisPropertyDateTimeDefinitionType">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyDefinitionType">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyDefinitionType">
* <sequence>
- * <element name="defaultValue" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyDateTime" minOccurs="0"/>
- * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChoiceDateTime" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="defaultValue" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyDateTime" minOccurs="0"/>
+ * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoiceDateTime" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -29,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyDateTimeDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyDateTimeDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"defaultValue",
"choice"
})
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDecimal.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDecimal.java
index bc8f8c6f58..602f057f90 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDecimal.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDecimal.java
@@ -17,7 +17,7 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisPropertyDecimal">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisProperty">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisProperty">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}decimal" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
@@ -29,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyDecimal", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyDecimal", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"value"
})
public class CmisPropertyDecimal
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDecimalDefinitionType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDecimalDefinitionType.java
index be31641d59..4c2afb585e 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDecimalDefinitionType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDecimalDefinitionType.java
@@ -18,13 +18,13 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisPropertyDecimalDefinitionType">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyDefinitionType">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyDefinitionType">
* <sequence>
- * <element name="defaultValue" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyDecimal" minOccurs="0"/>
+ * <element name="defaultValue" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyDecimal" minOccurs="0"/>
* <element name="maxValue" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="minValue" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- * <element name="precision" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumDecimalPrecision" minOccurs="0"/>
- * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChoiceDecimal" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="precision" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumDecimalPrecision" minOccurs="0"/>
+ * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoiceDecimal" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -34,7 +34,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyDecimalDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyDecimalDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"defaultValue",
"maxValue",
"minValue",
@@ -81,7 +81,7 @@ public class CmisPropertyDecimalDefinitionType
* @return
* possible object is
* {@link BigDecimal }
- *
+ *
*/
public BigDecimal getMaxValue() {
return maxValue;
@@ -93,7 +93,7 @@ public class CmisPropertyDecimalDefinitionType
* @param value
* allowed object is
* {@link BigDecimal }
- *
+ *
*/
public void setMaxValue(BigDecimal value) {
this.maxValue = value;
@@ -105,11 +105,11 @@ public class CmisPropertyDecimalDefinitionType
* @return
* possible object is
* {@link BigDecimal }
- *
+ *
*/
public BigDecimal getMinValue() {
return minValue;
- }
+ }
/**
* Sets the value of the minValue property.
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDefinitionType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDefinitionType.java
index 423a607cfd..04d4e78436 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDefinitionType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyDefinitionType.java
@@ -33,9 +33,9 @@ import org.w3c.dom.Element;
* <element name="displayName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="queryName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="propertyType" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumPropertyType"/>
- * <element name="cardinality" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumCardinality"/>
- * <element name="updatability" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumUpdatability"/>
+ * <element name="propertyType" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumPropertyType"/>
+ * <element name="cardinality" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumCardinality"/>
+ * <element name="updatability" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumUpdatability"/>
* <element name="inherited" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="required" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="queryable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
@@ -43,7 +43,7 @@ import org.w3c.dom.Element;
* <element name="openChoice" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <any/>
* </sequence>
- * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisUndefinedAttribute"/>
+ * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisUndefinedAttribute"/>
* </restriction>
* </complexContent>
* </complexType>
@@ -52,7 +52,7 @@ import org.w3c.dom.Element;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"id",
"localName",
"localNamespace",
@@ -70,12 +70,10 @@ import org.w3c.dom.Element;
"any"
})
@XmlSeeAlso({
- CmisPropertyXhtmlDefinitionType.class,
CmisPropertyHtmlDefinitionType.class,
CmisPropertyUriDefinitionType.class,
CmisPropertyIdDefinitionType.class,
CmisPropertyBooleanDefinitionType.class,
- CmisPropertyXmlDefinitionType.class,
CmisPropertyIntegerDefinitionType.class,
CmisPropertyDateTimeDefinitionType.class,
CmisPropertyDecimalDefinitionType.class,
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyHtml.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyHtml.java
index 1a036633c2..b9dbd7bf3d 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyHtml.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyHtml.java
@@ -5,9 +5,7 @@ import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlType;
-import org.w3c.dom.Element;
/**
@@ -18,19 +16,9 @@ import org.w3c.dom.Element;
*
* <complexType name="cmisPropertyHtml">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisProperty">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisProperty">
* <sequence>
- * <element name="value" maxOccurs="unbounded" minOccurs="0">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <any/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
+ * <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -40,14 +28,14 @@ import org.w3c.dom.Element;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyHtml", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyHtml", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"value"
})
public class CmisPropertyHtml
extends CmisProperty
{
- protected List value;
+ protected List value;
/**
* Gets the value of the value property.
@@ -67,76 +55,15 @@ public class CmisPropertyHtml
*
*
* Objects of the following type(s) are allowed in the list
- * {@link CmisPropertyHtml.Value }
+ * {@link String }
*
*
*/
- public List getValue() {
+ public List getValue() {
if (value == null) {
- value = new ArrayList();
+ value = new ArrayList();
}
return this.value;
}
-
- /**
- * Java class for anonymous complex type.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
- *
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <any/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "", propOrder = {
- "any"
- })
- public static class Value {
-
- @XmlAnyElement(lax = true)
- protected List any;
-
- /**
- * Gets the value of the any property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set
method for the any property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getAny().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link Element }
- * {@link Object }
- *
- *
- */
- public List getAny() {
- if (any == null) {
- any = new ArrayList();
- }
- return this.any;
- }
-
- }
-
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyHtmlDefinitionType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyHtmlDefinitionType.java
index fb61bdf74d..ac9d0b13d5 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyHtmlDefinitionType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyHtmlDefinitionType.java
@@ -16,10 +16,10 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisPropertyHtmlDefinitionType">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyDefinitionType">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyDefinitionType">
* <sequence>
- * <element name="defaultValue" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyHtml" minOccurs="0"/>
- * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChoiceHtml" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="defaultValue" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyHtml" minOccurs="0"/>
+ * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoiceHtml" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -29,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyHtmlDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyHtmlDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"defaultValue",
"choice"
})
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyId.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyId.java
index 5b536b998a..3298d00820 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyId.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyId.java
@@ -5,8 +5,6 @@ import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlAttribute;
-import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
@@ -18,11 +16,10 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisPropertyId">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisProperty">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisProperty">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
- * <attribute ref="{http://docs.oasis-open.org/ns/cmis/core/200901}href"/>
* </extension>
* </complexContent>
* </complexType>
@@ -31,7 +28,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyId", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyId", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"value"
})
public class CmisPropertyId
@@ -39,9 +36,6 @@ public class CmisPropertyId
{
protected List value;
- @XmlAttribute(namespace = "http://docs.oasis-open.org/ns/cmis/core/200901")
- @XmlSchemaType(name = "anyURI")
- protected String href;
/**
* Gets the value of the value property.
@@ -72,28 +66,4 @@ public class CmisPropertyId
return this.value;
}
- /**
- * Gets the value of the href property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getHref() {
- return href;
- }
-
- /**
- * Sets the value of the href property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setHref(String value) {
- this.href = value;
- }
-
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyIdDefinitionType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyIdDefinitionType.java
index 1af5e1dfe7..7814a8499e 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyIdDefinitionType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyIdDefinitionType.java
@@ -16,10 +16,10 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisPropertyIdDefinitionType">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyDefinitionType">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyDefinitionType">
* <sequence>
- * <element name="defaultValue" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyId" minOccurs="0"/>
- * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChoiceId" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="defaultValue" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyId" minOccurs="0"/>
+ * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoiceId" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -29,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyIdDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyIdDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"defaultValue",
"choice"
})
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyInteger.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyInteger.java
index df347f0f0b..724490edb6 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyInteger.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyInteger.java
@@ -17,7 +17,7 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisPropertyInteger">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisProperty">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisProperty">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}integer" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
@@ -29,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyInteger", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyInteger", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"value"
})
public class CmisPropertyInteger
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyIntegerDefinitionType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyIntegerDefinitionType.java
index 5736bcdcaa..8211ddea6e 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyIntegerDefinitionType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyIntegerDefinitionType.java
@@ -17,12 +17,12 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisPropertyIntegerDefinitionType">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyDefinitionType">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyDefinitionType">
* <sequence>
- * <element name="defaultValue" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyInteger" minOccurs="0"/>
+ * <element name="defaultValue" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyInteger" minOccurs="0"/>
* <element name="maxValue" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* <element name="minValue" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChoiceInteger" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoiceInteger" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -32,7 +32,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyIntegerDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyIntegerDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"defaultValue",
"maxValue",
"minValue",
@@ -53,7 +53,7 @@ public class CmisPropertyIntegerDefinitionType
* @return
* possible object is
* {@link CmisPropertyInteger }
- *
+ *
*/
public CmisPropertyInteger getDefaultValue() {
return defaultValue;
@@ -65,7 +65,7 @@ public class CmisPropertyIntegerDefinitionType
* @param value
* allowed object is
* {@link CmisPropertyInteger }
- *
+ *
*/
public void setDefaultValue(CmisPropertyInteger value) {
this.defaultValue = value;
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyString.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyString.java
index d8f5b1a8b2..c105ec1127 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyString.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyString.java
@@ -16,7 +16,7 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisPropertyString">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisProperty">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisProperty">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
@@ -28,7 +28,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyString", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyString", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"value"
})
public class CmisPropertyString
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyStringDefinitionType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyStringDefinitionType.java
index e4ce4cd8b9..eab7b805f5 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyStringDefinitionType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyStringDefinitionType.java
@@ -17,11 +17,11 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisPropertyStringDefinitionType">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyDefinitionType">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyDefinitionType">
* <sequence>
- * <element name="defaultValue" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyString" minOccurs="0"/>
+ * <element name="defaultValue" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyString" minOccurs="0"/>
* <element name="maxLength" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChoiceString" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoiceString" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -31,7 +31,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyStringDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyStringDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"defaultValue",
"maxLength",
"choice"
@@ -50,7 +50,7 @@ public class CmisPropertyStringDefinitionType
* @return
* possible object is
* {@link CmisPropertyString }
- *
+ *
*/
public CmisPropertyString getDefaultValue() {
return defaultValue;
@@ -62,7 +62,7 @@ public class CmisPropertyStringDefinitionType
* @param value
* allowed object is
* {@link CmisPropertyString }
- *
+ *
*/
public void setDefaultValue(CmisPropertyString value) {
this.defaultValue = value;
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyUri.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyUri.java
index e555c7844f..48397afa39 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyUri.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyUri.java
@@ -17,7 +17,7 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisPropertyUri">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisProperty">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisProperty">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}anyURI" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
@@ -29,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyUri", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyUri", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"value"
})
public class CmisPropertyUri
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyUriDefinitionType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyUriDefinitionType.java
index 2680ff6840..3edd03f990 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyUriDefinitionType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisPropertyUriDefinitionType.java
@@ -16,10 +16,10 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisPropertyUriDefinitionType">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyDefinitionType">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyDefinitionType">
* <sequence>
- * <element name="defaultValue" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyUri" minOccurs="0"/>
- * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisChoiceUri" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="defaultValue" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyUri" minOccurs="0"/>
+ * <element name="choice" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisChoiceUri" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -29,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisPropertyUriDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisPropertyUriDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"defaultValue",
"choice"
})
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisQueryType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisQueryType.java
index 8d02dd29ee..c563b9ebfe 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisQueryType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisQueryType.java
@@ -6,13 +6,11 @@ import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyAttribute;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
import org.w3c.dom.Element;
@@ -31,14 +29,14 @@ import org.w3c.dom.Element;
* <element name="repositoryId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="statement" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="searchAllVersions" type="{http://www.w3.org/2001/XMLSchema}boolean" 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/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="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="includeRenditions" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <any/>
* </sequence>
- * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisUndefinedAttribute"/>
+ * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisUndefinedAttribute"/>
* </restriction>
* </complexContent>
* </complexType>
@@ -47,15 +45,15 @@ import org.w3c.dom.Element;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisQueryType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisQueryType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"repositoryId",
"statement",
"searchAllVersions",
- "maxItems",
- "skipCount",
"includeAllowableActions",
"includeRelationships",
- "includeRenditions",
+ "renditionFilter",
+ "maxItems",
+ "skipCount",
"any"
})
public class CmisQueryType {
@@ -64,14 +62,11 @@ public class CmisQueryType {
@XmlElement(required = true)
protected String statement;
protected Boolean searchAllVersions;
+ protected Boolean includeAllowableActions;
+ protected EnumIncludeRelationships includeRelationships;
+ protected String renditionFilter;
protected BigInteger maxItems;
protected BigInteger skipCount;
- @XmlElementRef(name = "includeAllowableActions", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", type = JAXBElement.class)
- protected JAXBElement includeAllowableActions;
- @XmlElementRef(name = "includeRelationships", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", type = JAXBElement.class)
- protected JAXBElement includeRelationships;
- @XmlElementRef(name = "includeRenditions", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", type = JAXBElement.class)
- protected JAXBElement includeRenditions;
@XmlAnyElement(lax = true)
protected List any;
@XmlAnyAttribute
@@ -149,6 +144,78 @@ public class CmisQueryType {
this.searchAllVersions = value;
}
+ /**
+ * Gets the value of the includeAllowableActions property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isIncludeAllowableActions() {
+ return includeAllowableActions;
+ }
+
+ /**
+ * Sets the value of the includeAllowableActions property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setIncludeAllowableActions(Boolean value) {
+ this.includeAllowableActions = value;
+ }
+
+ /**
+ * Gets the value of the includeRelationships property.
+ *
+ * @return
+ * possible object is
+ * {@link EnumIncludeRelationships }
+ *
+ */
+ public EnumIncludeRelationships getIncludeRelationships() {
+ return includeRelationships;
+ }
+
+ /**
+ * Sets the value of the includeRelationships property.
+ *
+ * @param value
+ * allowed object is
+ * {@link EnumIncludeRelationships }
+ *
+ */
+ public void setIncludeRelationships(EnumIncludeRelationships value) {
+ this.includeRelationships = value;
+ }
+
+ /**
+ * Gets the value of the renditionFilter property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getRenditionFilter() {
+ return renditionFilter;
+ }
+
+ /**
+ * Sets the value of the renditionFilter property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setRenditionFilter(String value) {
+ this.renditionFilter = value;
+ }
+
/**
* Gets the value of the maxItems property.
*
@@ -197,78 +264,6 @@ public class CmisQueryType {
this.skipCount = value;
}
- /**
- * Gets the value of the includeAllowableActions property.
- *
- * @return
- * possible object is
- * {@link JAXBElement }{@code <}{@link Boolean }{@code >}
- *
- */
- public JAXBElement getIncludeAllowableActions() {
- return includeAllowableActions;
- }
-
- /**
- * Sets the value of the includeAllowableActions property.
- *
- * @param value
- * allowed object is
- * {@link JAXBElement }{@code <}{@link Boolean }{@code >}
- *
- */
- public void setIncludeAllowableActions(JAXBElement value) {
- this.includeAllowableActions = ((JAXBElement ) value);
- }
-
- /**
- * Gets the value of the includeRelationships property.
- *
- * @return
- * possible object is
- * {@link JAXBElement }{@code <}{@link EnumIncludeRelationships }{@code >}
- *
- */
- public JAXBElement getIncludeRelationships() {
- return includeRelationships;
- }
-
- /**
- * Sets the value of the includeRelationships property.
- *
- * @param value
- * allowed object is
- * {@link JAXBElement }{@code <}{@link EnumIncludeRelationships }{@code >}
- *
- */
- public void setIncludeRelationships(JAXBElement value) {
- this.includeRelationships = ((JAXBElement ) value);
- }
-
- /**
- * Gets the value of the includeRenditions property.
- *
- * @return
- * possible object is
- * {@link JAXBElement }{@code <}{@link Boolean }{@code >}
- *
- */
- public JAXBElement getIncludeRenditions() {
- return includeRenditions;
- }
-
- /**
- * Sets the value of the includeRenditions property.
- *
- * @param value
- * allowed object is
- * {@link JAXBElement }{@code <}{@link Boolean }{@code >}
- *
- */
- public void setIncludeRenditions(JAXBElement value) {
- this.includeRenditions = ((JAXBElement ) value);
- }
-
/**
* Gets the value of the any property.
*
@@ -290,7 +285,7 @@ public class CmisQueryType {
* {@link Element }
* {@link Object }
*
- *
+ *
*/
public List getAny() {
if (any == null) {
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisRenditionType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisRenditionType.java
index fae1b5ea11..de3adeea63 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisRenditionType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisRenditionType.java
@@ -2,11 +2,14 @@
package org.alfresco.repo.cmis.ws;
import java.math.BigInteger;
+import java.util.ArrayList;
+import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
+import org.w3c.dom.Element;
/**
@@ -20,10 +23,10 @@ import javax.xml.bind.annotation.XmlType;
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="streamId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="mimetype" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="length" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ * <element name="mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * <element name="length" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ * <element name="kind" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="kind" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="height" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* <element name="width" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* <element name="renditionDocumentId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
@@ -37,12 +40,12 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisRenditionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisRenditionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"streamId",
"mimetype",
"length",
- "title",
"kind",
+ "title",
"height",
"width",
"renditionDocumentId",
@@ -52,15 +55,18 @@ public class CmisRenditionType {
@XmlElement(required = true)
protected String streamId;
+ @XmlElement(required = true)
protected String mimetype;
+ @XmlElement(required = true)
protected BigInteger length;
- protected String title;
+ @XmlElement(required = true)
protected String kind;
+ protected String title;
protected BigInteger height;
protected BigInteger width;
protected String renditionDocumentId;
@XmlAnyElement(lax = true)
- protected Object any;
+ protected List any;
/**
* Gets the value of the streamId property.
@@ -134,30 +140,6 @@ public class CmisRenditionType {
this.length = value;
}
- /**
- * Gets the value of the title property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getTitle() {
- return title;
- }
-
- /**
- * Sets the value of the title property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setTitle(String value) {
- this.title = value;
- }
-
/**
* Gets the value of the kind property.
*
@@ -182,6 +164,30 @@ public class CmisRenditionType {
this.kind = value;
}
+ /**
+ * Gets the value of the title property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getTitle() {
+ return title;
+ }
+
+ /**
+ * Sets the value of the title property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setTitle(String value) {
+ this.title = value;
+ }
+
/**
* Gets the value of the height property.
*
@@ -257,25 +263,31 @@ public class CmisRenditionType {
/**
* Gets the value of the any property.
*
- * @return
- * possible object is
- * {@link Object }
- *
- */
- public Object getAny() {
- return any;
- }
-
- /**
- * Sets the value of the any property.
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set
method for the any property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getAny().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link Element }
+ * {@link Object }
+ *
*
- * @param value
- * allowed object is
- * {@link Object }
- *
*/
- public void setAny(Object value) {
- this.any = value;
+ public List getAny() {
+ if (any == null) {
+ any = new ArrayList();
+ }
+ return this.any;
}
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisRepositoryCapabilitiesType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisRepositoryCapabilitiesType.java
index ecf347f77f..d1198df11d 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisRepositoryCapabilitiesType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisRepositoryCapabilitiesType.java
@@ -25,23 +25,23 @@ import org.w3c.dom.Element;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
- * <element name="capabilityACL" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumCapabilityACL" minOccurs="0"/>
+ * <element name="capabilityACL" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumCapabilityACL"/>
* <element name="capabilityAllVersionsSearchable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- * <element name="capabilityChanges" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumCapabilityChanges"/>
- * <element name="capabilityChangesOnType" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumBaseObjectTypeIds" maxOccurs="unbounded"/>
- * <element name="capabilityContentStreamUpdatability" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumCapabilityContentStreamUpdates"/>
+ * <element name="capabilityChanges" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumCapabilityChanges"/>
+ * <element name="capabilityContentStreamUpdatability" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumCapabilityContentStreamUpdates"/>
* <element name="capabilityGetDescendants" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * <element name="capabilityGetFolderTree" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="capabilityMultifiling" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="capabilityPWCSearchable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- * <element name="capabilityPWCUpdateable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- * <element name="capabilityQuery" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumCapabilityQuery"/>
- * <element name="capabilityRenditions" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumCapabilityRendition"/>
+ * <element name="capabilityPWCUpdatable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * <element name="capabilityQuery" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumCapabilityQuery"/>
+ * <element name="capabilityRenditions" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumCapabilityRendition"/>
* <element name="capabilityUnfiling" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="capabilityVersionSpecificFiling" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- * <element name="capabilityJoin" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumCapabilityJoin"/>
+ * <element name="capabilityJoin" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumCapabilityJoin"/>
* <any/>
* </sequence>
- * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisUndefinedAttribute"/>
+ * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisUndefinedAttribute"/>
* </restriction>
* </complexContent>
* </complexType>
@@ -50,16 +50,16 @@ import org.w3c.dom.Element;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisRepositoryCapabilitiesType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisRepositoryCapabilitiesType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"capabilityACL",
"capabilityAllVersionsSearchable",
"capabilityChanges",
- "capabilityChangesOnType",
"capabilityContentStreamUpdatability",
"capabilityGetDescendants",
+ "capabilityGetFolderTree",
"capabilityMultifiling",
"capabilityPWCSearchable",
- "capabilityPWCUpdateable",
+ "capabilityPWCUpdatable",
"capabilityQuery",
"capabilityRenditions",
"capabilityUnfiling",
@@ -69,18 +69,18 @@ import org.w3c.dom.Element;
})
public class CmisRepositoryCapabilitiesType {
+ @XmlElement(required = true)
protected EnumCapabilityACL capabilityACL;
protected boolean capabilityAllVersionsSearchable;
@XmlElement(required = true)
protected EnumCapabilityChanges capabilityChanges;
@XmlElement(required = true)
- protected List capabilityChangesOnType;
- @XmlElement(required = true)
protected EnumCapabilityContentStreamUpdates capabilityContentStreamUpdatability;
protected boolean capabilityGetDescendants;
+ protected boolean capabilityGetFolderTree;
protected boolean capabilityMultifiling;
protected boolean capabilityPWCSearchable;
- protected boolean capabilityPWCUpdateable;
+ protected boolean capabilityPWCUpdatable;
@XmlElement(required = true)
protected EnumCapabilityQuery capabilityQuery;
@XmlElement(required = true)
@@ -152,48 +152,19 @@ public class CmisRepositoryCapabilitiesType {
* @param value
* allowed object is
* {@link EnumCapabilityChanges }
- *
+ *
*/
public void setCapabilityChanges(EnumCapabilityChanges value) {
this.capabilityChanges = value;
}
- /**
- * Gets the value of the capabilityChangesOnType property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set
method for the capabilityChangesOnType property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getCapabilityChangesOnType().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link EnumBaseObjectTypeIds }
- *
- *
- */
- public List getCapabilityChangesOnType() {
- if (capabilityChangesOnType == null) {
- capabilityChangesOnType = new ArrayList();
- }
- return this.capabilityChangesOnType;
- }
-
/**
* Gets the value of the capabilityContentStreamUpdatability property.
*
* @return
* possible object is
* {@link EnumCapabilityContentStreamUpdates }
- *
+ *
*/
public EnumCapabilityContentStreamUpdates getCapabilityContentStreamUpdatability() {
return capabilityContentStreamUpdatability;
@@ -205,7 +176,7 @@ public class CmisRepositoryCapabilitiesType {
* @param value
* allowed object is
* {@link EnumCapabilityContentStreamUpdates }
- *
+ *
*/
public void setCapabilityContentStreamUpdatability(EnumCapabilityContentStreamUpdates value) {
this.capabilityContentStreamUpdatability = value;
@@ -227,6 +198,22 @@ public class CmisRepositoryCapabilitiesType {
this.capabilityGetDescendants = value;
}
+ /**
+ * Gets the value of the capabilityGetFolderTree property.
+ *
+ */
+ public boolean isCapabilityGetFolderTree() {
+ return capabilityGetFolderTree;
+ }
+
+ /**
+ * Sets the value of the capabilityGetFolderTree property.
+ *
+ */
+ public void setCapabilityGetFolderTree(boolean value) {
+ this.capabilityGetFolderTree = value;
+ }
+
/**
* Gets the value of the capabilityMultifiling property.
*
@@ -260,19 +247,19 @@ public class CmisRepositoryCapabilitiesType {
}
/**
- * Gets the value of the capabilityPWCUpdateable property.
+ * Gets the value of the capabilityPWCUpdatable property.
*
*/
- public boolean isCapabilityPWCUpdateable() {
- return capabilityPWCUpdateable;
+ public boolean isCapabilityPWCUpdatable() {
+ return capabilityPWCUpdatable;
}
/**
- * Sets the value of the capabilityPWCUpdateable property.
+ * Sets the value of the capabilityPWCUpdatable property.
*
*/
- public void setCapabilityPWCUpdateable(boolean value) {
- this.capabilityPWCUpdateable = value;
+ public void setCapabilityPWCUpdatable(boolean value) {
+ this.capabilityPWCUpdatable = value;
}
/**
@@ -341,7 +328,7 @@ public class CmisRepositoryCapabilitiesType {
/**
* Gets the value of the capabilityVersionSpecificFiling property.
- *
+ *
*/
public boolean isCapabilityVersionSpecificFiling() {
return capabilityVersionSpecificFiling;
@@ -349,7 +336,7 @@ public class CmisRepositoryCapabilitiesType {
/**
* Sets the value of the capabilityVersionSpecificFiling property.
- *
+ *
*/
public void setCapabilityVersionSpecificFiling(boolean value) {
this.capabilityVersionSpecificFiling = value;
@@ -373,7 +360,7 @@ public class CmisRepositoryCapabilitiesType {
* @param value
* allowed object is
* {@link EnumCapabilityJoin }
- *
+ *
*/
public void setCapabilityJoin(EnumCapabilityJoin value) {
this.capabilityJoin = value;
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisRepositoryEntryType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisRepositoryEntryType.java
index 5a0ca542fb..11913dcd67 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisRepositoryEntryType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisRepositoryEntryType.java
@@ -10,7 +10,6 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyAttribute;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
import org.w3c.dom.Element;
@@ -26,13 +25,11 @@ import org.w3c.dom.Element;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
- * <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="relationship" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="thinClientURI" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
+ * <element name="repositoryId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * <element name="repositoryName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <any/>
* </sequence>
- * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisUndefinedAttribute"/>
+ * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisUndefinedAttribute"/>
* </restriction>
* </complexContent>
* </complexType>
@@ -42,120 +39,67 @@ import org.w3c.dom.Element;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cmisRepositoryEntryType", propOrder = {
- "id",
- "name",
- "relationship",
- "thinClientURI",
+ "repositoryId",
+ "repositoryName",
"any"
})
public class CmisRepositoryEntryType {
@XmlElement(required = true)
- protected String id;
+ protected String repositoryId;
@XmlElement(required = true)
- protected String name;
- protected String relationship;
- @XmlSchemaType(name = "anyURI")
- protected String thinClientURI;
+ protected String repositoryName;
@XmlAnyElement(lax = true)
protected List any;
@XmlAnyAttribute
private Map otherAttributes = new HashMap();
/**
- * Gets the value of the id property.
+ * Gets the value of the repositoryId property.
*
* @return
* possible object is
* {@link String }
*
*/
- public String getId() {
- return id;
+ public String getRepositoryId() {
+ return repositoryId;
}
/**
- * Sets the value of the id property.
+ * Sets the value of the repositoryId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
- public void setId(String value) {
- this.id = value;
+ public void setRepositoryId(String value) {
+ this.repositoryId = value;
}
/**
- * Gets the value of the name property.
+ * Gets the value of the repositoryName property.
*
* @return
* possible object is
* {@link String }
*
*/
- public String getName() {
- return name;
+ public String getRepositoryName() {
+ return repositoryName;
}
/**
- * Sets the value of the name property.
+ * Sets the value of the repositoryName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
- public void setName(String value) {
- this.name = value;
- }
-
- /**
- * Gets the value of the relationship property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getRelationship() {
- return relationship;
- }
-
- /**
- * Sets the value of the relationship property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setRelationship(String value) {
- this.relationship = value;
- }
-
- /**
- * Gets the value of the thinClientURI property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getThinClientURI() {
- return thinClientURI;
- }
-
- /**
- * Sets the value of the thinClientURI property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setThinClientURI(String value) {
- this.thinClientURI = value;
+ public void setRepositoryName(String value) {
+ this.repositoryName = value;
}
/**
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisRepositoryInfoType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisRepositoryInfoType.java
index 638382998e..05e62d089d 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisRepositoryInfoType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisRepositoryInfoType.java
@@ -29,21 +29,23 @@ import org.w3c.dom.Element;
* <sequence>
* <element name="repositoryId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="repositoryName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="repositoryRelationship" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="repositoryDescription" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="vendorName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="productName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="productVersion" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="rootFolderId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="latestChangeToken" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="capabilities" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisRepositoryCapabilitiesType"/>
- * <element name="aclCapability" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisACLCapabilityType" minOccurs="0"/>
+ * <element name="latestChangeLogToken" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="capabilities" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisRepositoryCapabilitiesType"/>
+ * <element name="aclCapability" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisACLCapabilityType" minOccurs="0"/>
* <element name="cmisVersionSupported" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
* <element name="thinClientURI" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
* <element name="changesIncomplete" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * <element name="changesOnType" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumBaseObjectTypeIds" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="principalAnonymous" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="principalAnyone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <any/>
* </sequence>
- * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisUndefinedAttribute"/>
+ * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisUndefinedAttribute"/>
* </restriction>
* </complexContent>
* </complexType>
@@ -52,21 +54,23 @@ import org.w3c.dom.Element;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisRepositoryInfoType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisRepositoryInfoType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"repositoryId",
"repositoryName",
- "repositoryRelationship",
"repositoryDescription",
"vendorName",
"productName",
"productVersion",
"rootFolderId",
- "latestChangeToken",
+ "latestChangeLogToken",
"capabilities",
"aclCapability",
"cmisVersionSupported",
"thinClientURI",
"changesIncomplete",
+ "changesOnType",
+ "principalAnonymous",
+ "principalAnyone",
"any"
})
public class CmisRepositoryInfoType {
@@ -76,8 +80,6 @@ public class CmisRepositoryInfoType {
@XmlElement(required = true)
protected String repositoryName;
@XmlElement(required = true)
- protected String repositoryRelationship;
- @XmlElement(required = true)
protected String repositoryDescription;
@XmlElement(required = true)
protected String vendorName;
@@ -87,8 +89,7 @@ public class CmisRepositoryInfoType {
protected String productVersion;
@XmlElement(required = true)
protected String rootFolderId;
- @XmlElement(required = true)
- protected String latestChangeToken;
+ protected String latestChangeLogToken;
@XmlElement(required = true)
protected CmisRepositoryCapabilitiesType capabilities;
protected CmisACLCapabilityType aclCapability;
@@ -97,6 +98,9 @@ public class CmisRepositoryInfoType {
@XmlSchemaType(name = "anyURI")
protected String thinClientURI;
protected Boolean changesIncomplete;
+ protected List changesOnType;
+ protected String principalAnonymous;
+ protected String principalAnyone;
@XmlAnyElement(lax = true)
protected List any;
@XmlAnyAttribute
@@ -150,30 +154,6 @@ public class CmisRepositoryInfoType {
this.repositoryName = value;
}
- /**
- * Gets the value of the repositoryRelationship property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getRepositoryRelationship() {
- return repositoryRelationship;
- }
-
- /**
- * Sets the value of the repositoryRelationship property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setRepositoryRelationship(String value) {
- this.repositoryRelationship = value;
- }
-
/**
* Gets the value of the repositoryDescription property.
*
@@ -295,27 +275,27 @@ public class CmisRepositoryInfoType {
}
/**
- * Gets the value of the latestChangeToken property.
+ * Gets the value of the latestChangeLogToken property.
*
* @return
* possible object is
* {@link String }
*
*/
- public String getLatestChangeToken() {
- return latestChangeToken;
+ public String getLatestChangeLogToken() {
+ return latestChangeLogToken;
}
/**
- * Sets the value of the latestChangeToken property.
+ * Sets the value of the latestChangeLogToken property.
*
* @param value
* allowed object is
* {@link String }
*
*/
- public void setLatestChangeToken(String value) {
- this.latestChangeToken = value;
+ public void setLatestChangeLogToken(String value) {
+ this.latestChangeLogToken = value;
}
/**
@@ -438,6 +418,83 @@ public class CmisRepositoryInfoType {
this.changesIncomplete = value;
}
+ /**
+ * Gets the value of the changesOnType property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set
method for the changesOnType property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getChangesOnType().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link EnumBaseObjectTypeIds }
+ *
+ *
+ */
+ public List getChangesOnType() {
+ if (changesOnType == null) {
+ changesOnType = new ArrayList();
+ }
+ return this.changesOnType;
+ }
+
+ /**
+ * Gets the value of the principalAnonymous property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getPrincipalAnonymous() {
+ return principalAnonymous;
+ }
+
+ /**
+ * Sets the value of the principalAnonymous property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setPrincipalAnonymous(String value) {
+ this.principalAnonymous = value;
+ }
+
+ /**
+ * Gets the value of the principalAnyone property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getPrincipalAnyone() {
+ return principalAnyone;
+ }
+
+ /**
+ * Sets the value of the principalAnyone property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setPrincipalAnyone(String value) {
+ this.principalAnyone = value;
+ }
+
/**
* Gets the value of the any property.
*
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisTypeContainer.java b/source/generated/org/alfresco/repo/cmis/ws/CmisTypeContainer.java
index 909059d4f0..6f920312bd 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisTypeContainer.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisTypeContainer.java
@@ -2,11 +2,17 @@
package org.alfresco.repo.cmis.ws;
import java.util.ArrayList;
+import java.util.HashMap;
import java.util.List;
+import java.util.Map;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAnyAttribute;
+import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.namespace.QName;
+import org.w3c.dom.Element;
/**
@@ -19,9 +25,11 @@ import javax.xml.bind.annotation.XmlType;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
- * <element name="type" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisTypeDefinitionType"/>
- * <element name="children" type="{http://docs.oasis-open.org/ns/cmis/messaging/200901}cmisTypeContainer" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="type" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisTypeDefinitionType"/>
+ * <element name="children" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisTypeContainer" maxOccurs="unbounded" minOccurs="0"/>
+ * <any/>
* </sequence>
+ * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisUndefinedAttribute"/>
* </restriction>
* </complexContent>
* </complexType>
@@ -32,13 +40,18 @@ import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cmisTypeContainer", propOrder = {
"type",
- "children"
+ "children",
+ "any"
})
public class CmisTypeContainer {
@XmlElement(required = true)
protected CmisTypeDefinitionType type;
protected List children;
+ @XmlAnyElement(lax = true)
+ protected List any;
+ @XmlAnyAttribute
+ private Map otherAttributes = new HashMap();
/**
* Gets the value of the type property.
@@ -93,4 +106,52 @@ public class CmisTypeContainer {
return this.children;
}
+ /**
+ * Gets the value of the any property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set
method for the any property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getAny().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link Element }
+ * {@link Object }
+ *
+ *
+ */
+ public List getAny() {
+ if (any == null) {
+ any = new ArrayList();
+ }
+ return this.any;
+ }
+
+ /**
+ * Gets a map that contains attributes that aren't bound to any typed property on this class.
+ *
+ *
+ * the map is keyed by the name of the attribute and
+ * the value is the string value of the attribute.
+ *
+ * the map returned by this method is live, and you can add new attribute
+ * by updating the map directly. Because of this design, there's no setter.
+ *
+ *
+ * @return
+ * always non-null
+ */
+ public Map getOtherAttributes() {
+ return otherAttributes;
+ }
+
}
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisTypeDefinitionType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisTypeDefinitionType.java
index 26eb355d1a..9ff00d673d 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisTypeDefinitionType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisTypeDefinitionType.java
@@ -30,34 +30,32 @@ import org.w3c.dom.Element;
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="localName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="localNamespace" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
+ * <element name="localNamespace" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
* <element name="displayName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="queryName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="baseTypeId" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumBaseObjectTypeIds"/>
+ * <element name="baseId" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumBaseObjectTypeIds"/>
* <element name="parentId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="creatable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="fileable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="queryable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- * <element name="fulltextindexed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * <element name="fulltextIndexed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="includedInSupertypeQuery" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="controllablePolicy" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="controllableACL" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <choice maxOccurs="unbounded" minOccurs="0">
- * <element name="propertyBooleanDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyBooleanDefinitionType"/>
- * <element name="propertyDateTimeDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyDateTimeDefinitionType"/>
- * <element name="propertyDecimalDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyDecimalDefinitionType"/>
- * <element name="propertyIdDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyIdDefinitionType"/>
- * <element name="propertyIntegerDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyIntegerDefinitionType"/>
- * <element name="propertyHtmlDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyHtmlDefinitionType"/>
- * <element name="propertyXhtmlDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyXhtmlDefinitionType"/>
- * <element name="propertyStringDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyStringDefinitionType"/>
- * <element name="propertyXmlDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyXmlDefinitionType"/>
- * <element name="propertyUriDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertyUriDefinitionType"/>
+ * <element name="propertyBooleanDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyBooleanDefinitionType"/>
+ * <element name="propertyDateTimeDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyDateTimeDefinitionType"/>
+ * <element name="propertyDecimalDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyDecimalDefinitionType"/>
+ * <element name="propertyIdDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyIdDefinitionType"/>
+ * <element name="propertyIntegerDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyIntegerDefinitionType"/>
+ * <element name="propertyHtmlDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyHtmlDefinitionType"/>
+ * <element name="propertyStringDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyStringDefinitionType"/>
+ * <element name="propertyUriDefinition" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertyUriDefinitionType"/>
* </choice>
* <any/>
* </sequence>
- * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisUndefinedAttribute"/>
+ * <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisUndefinedAttribute"/>
* </restriction>
* </complexContent>
* </complexType>
@@ -66,19 +64,19 @@ import org.w3c.dom.Element;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisTypeDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisTypeDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"id",
"localName",
"localNamespace",
"displayName",
"queryName",
"description",
- "baseTypeId",
+ "baseId",
"parentId",
"creatable",
"fileable",
"queryable",
- "fulltextindexed",
+ "fulltextIndexed",
"includedInSupertypeQuery",
"controllablePolicy",
"controllableACL",
@@ -97,33 +95,32 @@ public class CmisTypeDefinitionType {
protected String id;
@XmlElement(required = true)
protected String localName;
+ @XmlElement(required = true, nillable = true)
@XmlSchemaType(name = "anyURI")
protected String localNamespace;
protected String displayName;
protected String queryName;
protected String description;
@XmlElement(required = true)
- protected EnumBaseObjectTypeIds baseTypeId;
+ protected EnumBaseObjectTypeIds baseId;
protected String parentId;
protected boolean creatable;
protected boolean fileable;
protected boolean queryable;
- protected boolean fulltextindexed;
+ protected boolean fulltextIndexed;
@XmlElement(defaultValue = "true")
protected boolean includedInSupertypeQuery;
protected boolean controllablePolicy;
protected boolean controllableACL;
@XmlElements({
- @XmlElement(name = "propertyHtmlDefinition", type = CmisPropertyHtmlDefinitionType.class),
- @XmlElement(name = "propertyXmlDefinition", type = CmisPropertyXmlDefinitionType.class),
+ @XmlElement(name = "propertyBooleanDefinition", type = CmisPropertyBooleanDefinitionType.class),
@XmlElement(name = "propertyDateTimeDefinition", type = CmisPropertyDateTimeDefinitionType.class),
@XmlElement(name = "propertyUriDefinition", type = CmisPropertyUriDefinitionType.class),
@XmlElement(name = "propertyStringDefinition", type = CmisPropertyStringDefinitionType.class),
@XmlElement(name = "propertyIntegerDefinition", type = CmisPropertyIntegerDefinitionType.class),
- @XmlElement(name = "propertyIdDefinition", type = CmisPropertyIdDefinitionType.class),
- @XmlElement(name = "propertyXhtmlDefinition", type = CmisPropertyXhtmlDefinitionType.class),
+ @XmlElement(name = "propertyHtmlDefinition", type = CmisPropertyHtmlDefinitionType.class),
@XmlElement(name = "propertyDecimalDefinition", type = CmisPropertyDecimalDefinitionType.class),
- @XmlElement(name = "propertyBooleanDefinition", type = CmisPropertyBooleanDefinitionType.class)
+ @XmlElement(name = "propertyIdDefinition", type = CmisPropertyIdDefinitionType.class)
})
protected List propertyDefinition;
@XmlAnyElement(lax = true)
@@ -276,27 +273,27 @@ public class CmisTypeDefinitionType {
}
/**
- * Gets the value of the baseTypeId property.
+ * Gets the value of the baseId property.
*
* @return
* possible object is
* {@link EnumBaseObjectTypeIds }
*
*/
- public EnumBaseObjectTypeIds getBaseTypeId() {
- return baseTypeId;
+ public EnumBaseObjectTypeIds getBaseId() {
+ return baseId;
}
/**
- * Sets the value of the baseTypeId property.
+ * Sets the value of the baseId property.
*
* @param value
* allowed object is
* {@link EnumBaseObjectTypeIds }
*
*/
- public void setBaseTypeId(EnumBaseObjectTypeIds value) {
- this.baseTypeId = value;
+ public void setBaseId(EnumBaseObjectTypeIds value) {
+ this.baseId = value;
}
/**
@@ -372,19 +369,19 @@ public class CmisTypeDefinitionType {
}
/**
- * Gets the value of the fulltextindexed property.
+ * Gets the value of the fulltextIndexed property.
*
*/
- public boolean isFulltextindexed() {
- return fulltextindexed;
+ public boolean isFulltextIndexed() {
+ return fulltextIndexed;
}
/**
- * Sets the value of the fulltextindexed property.
+ * Sets the value of the fulltextIndexed property.
*
*/
- public void setFulltextindexed(boolean value) {
- this.fulltextindexed = value;
+ public void setFulltextIndexed(boolean value) {
+ this.fulltextIndexed = value;
}
/**
@@ -453,16 +450,14 @@ public class CmisTypeDefinitionType {
*
*
* Objects of the following type(s) are allowed in the list
- * {@link CmisPropertyHtmlDefinitionType }
- * {@link CmisPropertyXmlDefinitionType }
+ * {@link CmisPropertyBooleanDefinitionType }
* {@link CmisPropertyDateTimeDefinitionType }
* {@link CmisPropertyUriDefinitionType }
* {@link CmisPropertyStringDefinitionType }
* {@link CmisPropertyIntegerDefinitionType }
- * {@link CmisPropertyIdDefinitionType }
- * {@link CmisPropertyXhtmlDefinitionType }
+ * {@link CmisPropertyHtmlDefinitionType }
* {@link CmisPropertyDecimalDefinitionType }
- * {@link CmisPropertyBooleanDefinitionType }
+ * {@link CmisPropertyIdDefinitionType }
*
*
*/
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisTypeDocumentDefinitionType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisTypeDocumentDefinitionType.java
index 42ab8d3564..bd0f19c049 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisTypeDocumentDefinitionType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisTypeDocumentDefinitionType.java
@@ -15,10 +15,10 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisTypeDocumentDefinitionType">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisTypeDefinitionType">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisTypeDefinitionType">
* <sequence>
* <element name="versionable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- * <element name="contentStreamAllowed" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumContentStreamAllowed"/>
+ * <element name="contentStreamAllowed" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumContentStreamAllowed"/>
* </sequence>
* </extension>
* </complexContent>
@@ -28,7 +28,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisTypeDocumentDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisTypeDocumentDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"versionable",
"contentStreamAllowed"
})
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisTypeFolderDefinitionType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisTypeFolderDefinitionType.java
index 2b73169d79..54dd4ccbde 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisTypeFolderDefinitionType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisTypeFolderDefinitionType.java
@@ -14,7 +14,7 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisTypeFolderDefinitionType">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisTypeDefinitionType">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisTypeDefinitionType">
* <sequence>
* </sequence>
* </extension>
@@ -25,7 +25,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisTypeFolderDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901")
+@XmlType(name = "cmisTypeFolderDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/")
public class CmisTypeFolderDefinitionType
extends CmisTypeDefinitionType
{
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisTypePolicyDefinitionType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisTypePolicyDefinitionType.java
index b89ec089f9..a6e36898bb 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisTypePolicyDefinitionType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisTypePolicyDefinitionType.java
@@ -14,7 +14,7 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisTypePolicyDefinitionType">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisTypeDefinitionType">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisTypeDefinitionType">
* <sequence>
* </sequence>
* </extension>
@@ -25,7 +25,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisTypePolicyDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901")
+@XmlType(name = "cmisTypePolicyDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/")
public class CmisTypePolicyDefinitionType
extends CmisTypeDefinitionType
{
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CmisTypeRelationshipDefinitionType.java b/source/generated/org/alfresco/repo/cmis/ws/CmisTypeRelationshipDefinitionType.java
index e4e15ee34a..872736cf96 100755
--- a/source/generated/org/alfresco/repo/cmis/ws/CmisTypeRelationshipDefinitionType.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CmisTypeRelationshipDefinitionType.java
@@ -5,6 +5,7 @@ import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
@@ -16,10 +17,10 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="cmisTypeRelationshipDefinitionType">
* <complexContent>
- * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisTypeDefinitionType">
+ * <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisTypeDefinitionType">
* <sequence>
- * <element name="allowedSourceTypes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="allowedTargetTypes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="allowedSourceTypes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
+ * <element name="allowedTargetTypes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
* </sequence>
* </extension>
* </complexContent>
@@ -29,7 +30,7 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "cmisTypeRelationshipDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", propOrder = {
+@XmlType(name = "cmisTypeRelationshipDefinitionType", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"allowedSourceTypes",
"allowedTargetTypes"
})
@@ -37,7 +38,9 @@ public class CmisTypeRelationshipDefinitionType
extends CmisTypeDefinitionType
{
+ @XmlElement(required = true)
protected List allowedSourceTypes;
+ @XmlElement(required = true)
protected List allowedTargetTypes;
/**
diff --git a/source/generated/org/alfresco/repo/cmis/ws/CreateDocument.java b/source/generated/org/alfresco/repo/cmis/ws/CreateDocument.java
index 70ecdf70bb..4a124822a0 100644
--- a/source/generated/org/alfresco/repo/cmis/ws/CreateDocument.java
+++ b/source/generated/org/alfresco/repo/cmis/ws/CreateDocument.java
@@ -23,13 +23,14 @@ 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="properties" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisPropertiesType"/>
+ * <element name="properties" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertiesType"/>
* <element name="folderId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="contentStream" type="{http://docs.oasis-open.org/ns/cmis/messaging/200901}cmisContentStreamType" minOccurs="0"/>
- * <element name="versioningState" type="{http://docs.oasis-open.org/ns/cmis/core/200901}enumVersioningState" minOccurs="0"/>
- * <element name="applyPolicies" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="addACEs" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisAccessControlListType" minOccurs="0"/>
- * <element name="removeACEs" type="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisAccessControlListType" minOccurs="0"/>
+ * <element name="contentStream" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisContentStreamType" minOccurs="0"/>
+ * <element name="versioningState" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}enumVersioningState" minOccurs="0"/>
+ * <element name="policies" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="addACEs" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisAccessControlListType" minOccurs="0"/>
+ * <element name="removeACEs" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisAccessControlListType" minOccurs="0"/>
+ * <element name="extension" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -45,9 +46,10 @@ import javax.xml.bind.annotation.XmlType;
"folderId",
"contentStream",
"versioningState",
- "applyPolicies",
+ "policies",
"addACEs",
- "removeACEs"
+ "removeACEs",
+ "extension"
})
@XmlRootElement(name = "createDocument")
public class CreateDocument {
@@ -56,17 +58,20 @@ public class CreateDocument {
protected String repositoryId;
@XmlElement(required = true)
protected CmisPropertiesType properties;
- protected String folderId;
- @XmlElementRef(name = "contentStream", 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 folderId;
+ @XmlElementRef(name = "contentStream", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement contentStream;
- @XmlElementRef(name = "versioningState", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
+ @XmlElementRef(name = "versioningState", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement versioningState;
@XmlElement(nillable = true)
- protected List applyPolicies;
- @XmlElementRef(name = "addACEs", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
+ protected List policies;
+ @XmlElementRef(name = "addACEs", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement addACEs;
- @XmlElementRef(name = "removeACEs", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200901", type = JAXBElement.class)
+ @XmlElementRef(name = "removeACEs", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
protected JAXBElement removeACEs;
+ @XmlElementRef(name = "extension", namespace = "http://docs.oasis-open.org/ns/cmis/messaging/200908/", type = JAXBElement.class)
+ protected JAXBElement extension;
/**
* Gets the value of the repositoryId property.
@@ -121,10 +126,10 @@ public class CreateDocument {
*
* @return
* possible object is
- * {@link String }
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
- public String getFolderId() {
+ public JAXBElement getFolderId() {
return folderId;
}
@@ -133,11 +138,11 @@ public class CreateDocument {
*
* @param value
* allowed object is
- * {@link String }
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
- public void setFolderId(String value) {
- this.folderId = value;
+ public void setFolderId(JAXBElement value) {
+ this.folderId = ((JAXBElement ) value);
}
/**
@@ -189,18 +194,18 @@ public class CreateDocument {
}
/**
- * Gets the value of the applyPolicies property.
+ * Gets the value of the policies property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
- * This is why there is not a set
method for the applyPolicies property.
+ * This is why there is not a set
method for the policies property.
*
*
* For example, to add a new item, do as follows:
*
- * getApplyPolicies().add(newItem);
+ * getPolicies().add(newItem);
*
*
*
@@ -210,11 +215,11 @@ public class CreateDocument {
*
*
*/
- public List getApplyPolicies() {
- if (applyPolicies == null) {
- applyPolicies = new ArrayList();
+ public List getPolicies() {
+ if (policies == null) {
+ policies = new ArrayList();
}
- return this.applyPolicies;
+ return this.policies;
}
/**
@@ -265,4 +270,28 @@ public class CreateDocument {
this.removeACEs = ((JAXBElement ) value);
}
+ /**
+ * Gets the value of the extension property.
+ *
+ * @return
+ * possible object is
+ * {@link JAXBElement }{@code <}{@link CmisExtensionType }{@code >}
+ *
+ */
+ public JAXBElement 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