Author: fmui
Date: Fri Oct 10 07:23:33 2014
New Revision: 1630690

URL: http://svn.apache.org/r1630690
Log:
AtomPub server: fixed issue in object info compilation for CMIS 1.1 repositories

Modified:
    
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/AbstractCmisService.java

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/AbstractCmisService.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/AbstractCmisService.java?rev=1630690&r1=1630689&r2=1630690&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/AbstractCmisService.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/AbstractCmisService.java
 Fri Oct 10 07:23:33 2014
@@ -1188,7 +1188,7 @@ public abstract class AbstractCmisServic
 
         try {
             TypeDefinitionList baseTypesList = getTypeChildren(repositoryId, 
null, Boolean.FALSE,
-                    BigInteger.valueOf(4), BigInteger.ZERO, null);
+                    BigInteger.valueOf(6), BigInteger.ZERO, null);
             for (TypeDefinition type : baseTypesList.getList()) {
                 if (BaseTypeId.CMIS_RELATIONSHIP.value().equals(type.getId())) 
{
                     info.setSupportsRelationships(true);


Reply via email to