You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by fm...@apache.org on 2013/05/17 18:05:19 UTC

svn commit: r1483889 [3/3] - in /chemistry/opencmis/trunk: ./ chemistry-opencmis-client/chemistry-opencmis-client-api/src/main/java/org/apache/chemistry/opencmis/client/api/ chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/ap...

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/enums/Action.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/enums/Action.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/enums/Action.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/enums/Action.java Fri May 17 16:05:18 2013
@@ -19,37 +19,67 @@
 package org.apache.chemistry.opencmis.commons.enums;
 
 public enum Action {
-   
+
     // important: do not change the order of these values!
+    /** @cmis 1.0 */
     CAN_DELETE_OBJECT("canDeleteObject"), //
+    /** @cmis 1.0 */
     CAN_UPDATE_PROPERTIES("canUpdateProperties"), //
+    /** @cmis 1.0 */
     CAN_GET_FOLDER_TREE("canGetFolderTree"), //
+    /** @cmis 1.0 */
     CAN_GET_PROPERTIES("canGetProperties"), //
+    /** @cmis 1.0 */
     CAN_GET_OBJECT_RELATIONSHIPS("canGetObjectRelationships"), //
+    /** @cmis 1.0 */
     CAN_GET_OBJECT_PARENTS("canGetObjectParents"), //
+    /** @cmis 1.0 */
     CAN_GET_FOLDER_PARENT("canGetFolderParent"), //
+    /** @cmis 1.0 */
     CAN_GET_DESCENDANTS("canGetDescendants"), //
+    /** @cmis 1.0 */
     CAN_MOVE_OBJECT("canMoveObject"), //
+    /** @cmis 1.0 */
     CAN_DELETE_CONTENT_STREAM("canDeleteContentStream"), //
+    /** @cmis 1.0 */
     CAN_CHECK_OUT("canCheckOut"), //
+    /** @cmis 1.0 */
     CAN_CANCEL_CHECK_OUT("canCancelCheckOut"), //
+    /** @cmis 1.0 */
     CAN_CHECK_IN("canCheckIn"), //
+    /** @cmis 1.0 */
     CAN_SET_CONTENT_STREAM("canSetContentStream"), //
+    /** @cmis 1.0 */
     CAN_GET_ALL_VERSIONS("canGetAllVersions"), //
+    /** @cmis 1.0 */
     CAN_ADD_OBJECT_TO_FOLDER("canAddObjectToFolder"), //
+    /** @cmis 1.0 */
     CAN_REMOVE_OBJECT_FROM_FOLDER("canRemoveObjectFromFolder"), //
+    /** @cmis 1.0 */
     CAN_GET_CONTENT_STREAM("canGetContentStream"), //
+    /** @cmis 1.0 */
     CAN_APPLY_POLICY("canApplyPolicy"), //
+    /** @cmis 1.0 */
     CAN_GET_APPLIED_POLICIES("canGetAppliedPolicies"), //
+    /** @cmis 1.0 */
     CAN_REMOVE_POLICY("canRemovePolicy"), //
+    /** @cmis 1.0 */
     CAN_GET_CHILDREN("canGetChildren"), //
+    /** @cmis 1.0 */
     CAN_CREATE_DOCUMENT("canCreateDocument"), //
+    /** @cmis 1.0 */
     CAN_CREATE_FOLDER("canCreateFolder"), //
+    /** @cmis 1.0 */
     CAN_CREATE_RELATIONSHIP("canCreateRelationship"), //
+    /** @cmis 1.1 */
     CAN_CREATE_ITEM("canCreateItem"), //
+    /** @cmis 1.0 */
     CAN_DELETE_TREE("canDeleteTree"), //
+    /** @cmis 1.0 */
     CAN_GET_RENDITIONS("canGetRenditions"), //
+    /** @cmis 1.0 */
     CAN_GET_ACL("canGetACL"), //
+    /** @cmis 1.0 */
     CAN_APPLY_ACL("canApplyACL");
 
     private final String value;

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/enums/BaseTypeId.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/enums/BaseTypeId.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/enums/BaseTypeId.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/enums/BaseTypeId.java Fri May 17 16:05:18 2013
@@ -23,12 +23,18 @@ package org.apache.chemistry.opencmis.co
  */
 public enum BaseTypeId {
 
+    /** @cmis 1.0 */
     CMIS_DOCUMENT("cmis:document"), //
+    /** @cmis 1.0 */
     CMIS_FOLDER("cmis:folder"), //
+    /** @cmis 1.0 */
     CMIS_RELATIONSHIP("cmis:relationship"), //
+    /** @cmis 1.0 */
     CMIS_POLICY("cmis:policy"), //
-    CMIS_ITEM("cmis:item"), // CMIS 1.1
-    CMIS_SECONDARY("cmis:secondary"); // CMIS 1.1
+    /** @cmis 1.1 */
+    CMIS_ITEM("cmis:item"), //
+    /** @cmis 1.1 */
+    CMIS_SECONDARY("cmis:secondary"); //
 
     private final String value;
 

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConstraintException.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConstraintException.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConstraintException.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConstraintException.java Fri May 17 16:05:18 2013
@@ -22,6 +22,9 @@ import java.math.BigInteger;
 
 /**
  * CMIS Constraint Exception.
+ * <p>
+ * Intent: The operation violates a repository- or object-level constraint
+ * defined in the CMIS domain model.
  */
 public class CmisConstraintException extends CmisBaseException {
 

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisContentAlreadyExistsException.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisContentAlreadyExistsException.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisContentAlreadyExistsException.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisContentAlreadyExistsException.java Fri May 17 16:05:18 2013
@@ -22,6 +22,10 @@ import java.math.BigInteger;
 
 /**
  * CMIS ContentAlreadyExists Exception.
+ * <p>
+ * Intent: The operation attempts to set the content stream for a document that
+ * already has a content stream without explicitly specifying the
+ * "overwriteFlag" parameter.
  */
 public class CmisContentAlreadyExistsException extends CmisBaseException {
 

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisFilterNotValidException.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisFilterNotValidException.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisFilterNotValidException.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisFilterNotValidException.java Fri May 17 16:05:18 2013
@@ -22,6 +22,11 @@ import java.math.BigInteger;
 
 /**
  * CMIS FilterNotValid Exception.
+ * <p>
+ * Intent: The property filter or rendition filter input to the operation is not
+ * valid. The repository SHOULD NOT throw this exception if the filter syntax is
+ * correct but one or more elements in the filter is unknown. Unknown elements
+ * SHOULD be ignored.
  */
 public class CmisFilterNotValidException extends CmisBaseException {
 

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisInvalidArgumentException.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisInvalidArgumentException.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisInvalidArgumentException.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisInvalidArgumentException.java Fri May 17 16:05:18 2013
@@ -22,6 +22,9 @@ import java.math.BigInteger;
 
 /**
  * CMIS InvalidArgument Exception.
+ * <p>
+ * Cause: One or more of the input parameters to the service method is missing
+ * or invalid.
  */
 public class CmisInvalidArgumentException extends CmisBaseException {
 

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNameConstraintViolationException.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNameConstraintViolationException.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNameConstraintViolationException.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNameConstraintViolationException.java Fri May 17 16:05:18 2013
@@ -22,6 +22,9 @@ import java.math.BigInteger;
 
 /**
  * CMIS NameConstraintViolation Exception.
+ * <p>
+ * Intent: The repository is not able to store the object that the user is
+ * creating/updating due to a name constraint violation.
  */
 public class CmisNameConstraintViolationException extends CmisBaseException {
 

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNotSupportedException.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNotSupportedException.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNotSupportedException.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNotSupportedException.java Fri May 17 16:05:18 2013
@@ -22,6 +22,9 @@ import java.math.BigInteger;
 
 /**
  * CMIS NotSupported Exception.
+ * <p>
+ * Cause: The service method invoked requires an optional capability not
+ * supported by the repository.
  */
 public class CmisNotSupportedException extends CmisBaseException {
 

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisObjectNotFoundException.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisObjectNotFoundException.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisObjectNotFoundException.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisObjectNotFoundException.java Fri May 17 16:05:18 2013
@@ -22,6 +22,9 @@ import java.math.BigInteger;
 
 /**
  * CMIS ObjectNotFound Exception.
+ * <p>
+ * Cause: The service call has specified an object, an object-type or a
+ * repository that does not exist.
  */
 public class CmisObjectNotFoundException extends CmisBaseException {
 

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisPermissionDeniedException.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisPermissionDeniedException.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisPermissionDeniedException.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisPermissionDeniedException.java Fri May 17 16:05:18 2013
@@ -22,6 +22,9 @@ import java.math.BigInteger;
 
 /**
  * CMIS PermissionDenied Exception.
+ * <p>
+ * Cause: The caller of the service method does not have sufficient permissions
+ * to perform the operation.
  */
 public class CmisPermissionDeniedException extends CmisBaseException {
 

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisRuntimeException.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisRuntimeException.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisRuntimeException.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisRuntimeException.java Fri May 17 16:05:18 2013
@@ -22,6 +22,8 @@ import java.math.BigInteger;
 
 /**
  * CMIS Runtime Exception.
+ * <p>
+ * Cause: Any other cause not expressible by another CMIS exception.
  */
 public class CmisRuntimeException extends CmisBaseException {
 

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStorageException.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStorageException.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStorageException.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStorageException.java Fri May 17 16:05:18 2013
@@ -22,6 +22,9 @@ import java.math.BigInteger;
 
 /**
  * CMIS Storage Exception.
+ * <p>
+ * Intent: The repository is not able to store the object that the user is
+ * creating/updating due to an internal storage problem.
  */
 public class CmisStorageException extends CmisBaseException {
 

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStreamNotSupportedException.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStreamNotSupportedException.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStreamNotSupportedException.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStreamNotSupportedException.java Fri May 17 16:05:18 2013
@@ -22,6 +22,10 @@ import java.math.BigInteger;
 
 /**
  * CMIS StreamNotSupported Exception.
+ * <p>
+ * Intent: The operation is attempting to get or set a content stream for a
+ * document whose object-type specifies that a content stream is not allowed for
+ * document's of that type.
  */
 public class CmisStreamNotSupportedException extends CmisBaseException {
 

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisUnauthorizedException.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisUnauthorizedException.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisUnauthorizedException.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisUnauthorizedException.java Fri May 17 16:05:18 2013
@@ -22,7 +22,7 @@ import java.math.BigInteger;
 
 /**
  * Unauthorized exception.
- * 
+ * <p>
  * (This is exception is not defined in the CMIS specification and is therefore
  * derived from {@link CmisRuntimeException}.)
  */

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisUpdateConflictException.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisUpdateConflictException.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisUpdateConflictException.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisUpdateConflictException.java Fri May 17 16:05:18 2013
@@ -22,6 +22,9 @@ import java.math.BigInteger;
 
 /**
  * CMIS UpdateConflict Exception.
+ * <p>
+ * Intent: The operation is attempting to update an object that is no longer
+ * current (as determined by the repository).
  */
 public class CmisUpdateConflictException extends CmisBaseException {
 

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisVersioningException.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisVersioningException.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisVersioningException.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisVersioningException.java Fri May 17 16:05:18 2013
@@ -22,6 +22,9 @@ import java.math.BigInteger;
 
 /**
  * CMIS Versioning Exception.
+ * <p>
+ * Intent: The operation is attempting to perform an action on a non-current
+ * version of a document that cannot be performed on a non-current version.
  */
 public class CmisVersioningException extends CmisBaseException {
 

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/server/CmisService.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/server/CmisService.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/server/CmisService.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/server/CmisService.java Fri May 17 16:05:18 2013
@@ -20,7 +20,6 @@
  */
 package org.apache.chemistry.opencmis.commons.server;
 
-
 import java.util.List;
 
 import org.apache.chemistry.opencmis.commons.data.Acl;
@@ -44,7 +43,7 @@ import org.apache.chemistry.opencmis.com
  * 
  * <p>
  * <em>
- * See CMIS 1.0 specification for details on the operations, parameters,
+ * See CMIS 1.0 and CMIS 1.1 specifications for details on the operations, parameters,
  * exceptions and the domain model.
  * </em>
  * </p>

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/AclService.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/AclService.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/AclService.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/AclService.java Fri May 17 16:05:18 2013
@@ -27,7 +27,7 @@ import org.apache.chemistry.opencmis.com
  * 
  * <p>
  * <em>
- * See CMIS 1.0 specification for details on the operations, parameters,
+ * See the CMIS 1.0 and CMIS 1.1 specifications for details on the operations, parameters,
  * exceptions and the domain model.
  * </em>
  * </p>

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/DiscoveryService.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/DiscoveryService.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/DiscoveryService.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/DiscoveryService.java Fri May 17 16:05:18 2013
@@ -29,7 +29,7 @@ import org.apache.chemistry.opencmis.com
  * 
  * <p>
  * <em>
- * See CMIS 1.0 specification for details on the operations, parameters,
+ * See the CMIS 1.0 and CMIS 1.1 specifications for details on the operations, parameters,
  * exceptions and the domain model.
  * </em>
  * </p>

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/MultiFilingService.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/MultiFilingService.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/MultiFilingService.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/MultiFilingService.java Fri May 17 16:05:18 2013
@@ -25,7 +25,7 @@ import org.apache.chemistry.opencmis.com
  * 
  * <p>
  * <em>
- * See CMIS 1.0 specification for details on the operations, parameters,
+ * See the CMIS 1.0 and CMIS 1.1 specifications for details on the operations, parameters,
  * exceptions and the domain model.
  * </em>
  * </p>

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/NavigationService.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/NavigationService.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/NavigationService.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/NavigationService.java Fri May 17 16:05:18 2013
@@ -34,7 +34,7 @@ import org.apache.chemistry.opencmis.com
  * 
  * <p>
  * <em>
- * See CMIS 1.0 specification for details on the operations, parameters,
+ * See the CMIS 1.0 and CMIS 1.1 specifications for details on the operations, parameters,
  * exceptions and the domain model.
  * </em>
  * </p>

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/ObjectService.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/ObjectService.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/ObjectService.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/ObjectService.java Fri May 17 16:05:18 2013
@@ -39,7 +39,7 @@ import org.apache.chemistry.opencmis.com
  * 
  * <p>
  * <em>
- * See CMIS 1.0 specification for details on the operations, parameters,
+ * See the CMIS 1.0 and CMIS 1.1 specifications for details on the operations, parameters,
  * exceptions and the domain model.
  * </em>
  * </p>

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/PolicyService.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/PolicyService.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/PolicyService.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/PolicyService.java Fri May 17 16:05:18 2013
@@ -28,7 +28,7 @@ import org.apache.chemistry.opencmis.com
  * 
  * <p>
  * <em>
- * See CMIS 1.0 specification for details on the operations, parameters,
+ * See the CMIS 1.0 and CMIS 1.1 specifications for details on the operations, parameters,
  * exceptions and the domain model.
  * </em>
  * </p>

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/RelationshipService.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/RelationshipService.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/RelationshipService.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/RelationshipService.java Fri May 17 16:05:18 2013
@@ -29,7 +29,7 @@ import org.apache.chemistry.opencmis.com
  * 
  * <p>
  * <em>
- * See CMIS 1.0 specification for details on the operations, parameters,
+ * See the CMIS 1.0 and CMIS 1.1 specifications for details on the operations, parameters,
  * exceptions and the domain model.
  * </em>
  * </p>

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/RepositoryService.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/RepositoryService.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/RepositoryService.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/RepositoryService.java Fri May 17 16:05:18 2013
@@ -32,7 +32,7 @@ import org.apache.chemistry.opencmis.com
  * 
  * <p>
  * <em>
- * See CMIS 1.0 specification for details on the operations, parameters,
+ * See the CMIS 1.0 and CMIS 1.1 specifications for details on the operations, parameters,
  * exceptions and the domain model.
  * </em>
  * </p>

Modified: chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/VersioningService.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/VersioningService.java?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/VersioningService.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/spi/VersioningService.java Fri May 17 16:05:18 2013
@@ -32,7 +32,7 @@ import org.apache.chemistry.opencmis.com
  * 
  * <p>
  * <em>
- * See CMIS 1.0 specification for details on the operations, parameters,
+ * See the CMIS 1.0 and CMIS 1.1 specifications for details on the operations, parameters,
  * exceptions and the domain model.
  * </em>
  * </p>

Modified: chemistry/opencmis/trunk/pom.xml
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/pom.xml?rev=1483889&r1=1483888&r2=1483889&view=diff
==============================================================================
--- chemistry/opencmis/trunk/pom.xml (original)
+++ chemistry/opencmis/trunk/pom.xml Fri May 17 16:05:18 2013
@@ -538,7 +538,43 @@
                           <packages>org.apache.chemistry.opencmis.tck*</packages>
                       </group>
                     </groups>
-                    <excludePackageNames>org.apache.chemistry.opencmis.commons.impl:org.apache.chemistry.opencmis.commons.impl.dataobjects:org.apache.chemistry.opencmis.client.runtime:org.apache.chemistry.opencmis.client.runtime.*:org.apache.chemistry.opencmis.commons.impl.jaxb:org.apache.chemistry.opencmis.client.bindings.impl:org.apache.chemistry.opencmis.client.bindings.cache:org.apache.chemistry.opencmis.client.bindings.spi:org.apache.chemistry.opencmis.server.impl:org.apache.chemistry.opencmis.fit:org.apache.chemistry.opencmis.util.repository:org.apache.chemistry.opencmis.fileshare:org.apache.chemistry.opencmis.fileshare:org.apache.chemistry.opencmis.inmemory:org.apache.chemistry.opencmis.fileshare:org.apache.chemistry.opencmis.jcr:org.apache.chemistry.opencmis.browser:org.apache.chemistry.opencmis.workbench:org.apache.chemistry.opencmis.commander:org.apache.chemistry.opencmis.client.osgi</excludePackageNames>
+                    <!--<excludePackageNames>org.apache.chemistry.opencmis.commons.impl:org.apache.chemistry.opencmis.commons.impl.dataobjects:org.apache.chemistry.opencmis.client.runtime:org.apache.chemistry.opencmis.client.runtime.*:org.apache.chemistry.opencmis.commons.impl.jaxb:org.apache.chemistry.opencmis.client.bindings.impl:org.apache.chemistry.opencmis.client.bindings.cache:org.apache.chemistry.opencmis.client.bindings.spi:org.apache.chemistry.opencmis.server.impl:org.apache.chemistry.opencmis.fit:org.apache.chemistry.opencmis.util.repository:org.apache.chemistry.opencmis.fileshare:org.apache.chemistry.opencmis.fileshare:org.apache.chemistry.opencmis.inmemory:org.apache.chemistry.opencmis.fileshare:org.apache.chemistry.opencmis.jcr:org.apache.chemistry.opencmis.browser:org.apache.chemistry.opencmis.workbench:org.apache.chemistry.opencmis.commander:org.apache.chemistry.opencmis.client.osgi</excludePackageNames>-->
+                    <sourceFileExcludes>
+                      <exclude>**/CmisQl*</exclude>
+                      <exclude>**/CmisQueryWalk*</exclude>
+                      <exclude>**/TextSearch*</exclude>
+                      <exclude>org/apache/chemistry/opencmis/commons/impl/*</exclude>
+                      <exclude>org/apache/chemistry/opencmis/commons/impl/dataobjects/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/commons/impl/json/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/commons/impl/tube/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/commons/impl/jaxb/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/commons/impl/server/ObjectInfoImpl*</exclude>
+                      <exclude>org/apache/chemistry/opencmis/commons/impl/server/RenditionInfoImpl*</exclude>
+                      <exclude>org/apache/chemistry/opencmis/client/runtime/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/client/bindings/impl/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/client/bindings/cache/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/client/bindings/spi/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/server/impl/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/server/shared/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/server/support/filter/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/fit/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/util/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/fileshare/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/inmemory/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/jcr/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/browser/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/workbench/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/commander/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/client/osgi/**</exclude>
+                      <exclude>org/apache/chemistry/opencmis/tools/**</exclude>
+                    </sourceFileExcludes>
+                    <tags>
+                      <tag>
+                        <name>cmis</name>
+                        <placement>a</placement>
+                        <head>CMIS:</head>
+                      </tag>
+                    </tags>
                 </configuration>
             </plugin>
         </plugins>