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

@@ -15,6 +15,7 @@ import javax.xml.bind.annotation.XmlType;
* <simpleType name="enumServiceException">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="constraint"/>
* <enumeration value="nameConstraintViolation"/>
* <enumeration value="contentAlreadyExists"/>
* <enumeration value="filterNotValid"/>
* <enumeration value="invalidArgument"/>
@@ -24,7 +25,6 @@ import javax.xml.bind.annotation.XmlType;
* <enumeration value="runtime"/>
* <enumeration value="storage"/>
* <enumeration value="streamNotSupported"/>
* <enumeration value="type"/>
* <enumeration value="updateConflict"/>
* <enumeration value="versioning"/>
* </restriction>
@@ -38,6 +38,8 @@ public enum EnumServiceException {
@XmlEnumValue("constraint")
CONSTRAINT("constraint"),
@XmlEnumValue("nameConstraintViolation")
NAME_CONSTRAINT_VIOLATION("nameConstraintViolation"),
@XmlEnumValue("contentAlreadyExists")
CONTENT_ALREADY_EXISTS("contentAlreadyExists"),
@XmlEnumValue("filterNotValid")
@@ -56,8 +58,6 @@ public enum EnumServiceException {
STORAGE("storage"),
@XmlEnumValue("streamNotSupported")
STREAM_NOT_SUPPORTED("streamNotSupported"),
@XmlEnumValue("type")
TYPE("type"),
@XmlEnumValue("updateConflict")
UPDATE_CONFLICT("updateConflict"),
@XmlEnumValue("versioning")