Merged CMIS063 to HEAD

16930: MOB-1330: Upgrade Web Services Repository to 0.7

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@17243 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
David Caruana
2009-10-29 18:40:59 +00:00
parent 93346e262e
commit d6b8ce91a5
203 changed files with 10223 additions and 6060 deletions

View File

@@ -14,6 +14,7 @@ import javax.xml.bind.annotation.XmlType;
* <pre>
* &lt;simpleType name="enumVersioningState">
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="none"/>
* &lt;enumeration value="checkedout"/>
* &lt;enumeration value="minor"/>
* &lt;enumeration value="major"/>
@@ -22,10 +23,12 @@ import javax.xml.bind.annotation.XmlType;
* </pre>
*
*/
@XmlType(name = "enumVersioningState", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901")
@XmlType(name = "enumVersioningState", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/")
@XmlEnum
public enum EnumVersioningState {
@XmlEnumValue("none")
NONE("none"),
@XmlEnumValue("checkedout")
CHECKEDOUT("checkedout"),
@XmlEnumValue("minor")