You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@chemistry.apache.org by "Mouad EL BAKKALI (JIRA)" <ji...@apache.org> on 2013/06/06 10:13:20 UTC

[jira] [Created] (CMIS-665) load primary type in AbstractBrowserService

Mouad EL BAKKALI created CMIS-665:
-------------------------------------

             Summary: load primary type in AbstractBrowserService
                 Key: CMIS-665
                 URL: https://issues.apache.org/jira/browse/CMIS-665
             Project: Chemistry
          Issue Type: Bug
          Components: opencmis-server
            Reporter: Mouad EL BAKKALI


While trying to create a document, loading the primary type fails in:

{code:title=AbstractBrowserService.java}
....
       // load primary type
        List<String> objectTypeIdsValues = properties.get(PropertyIds.OBJECT_TYPE_ID);
        if (objectTypeIdsValues != null && !objectTypeIdsValues.isEmpty()) {
            TypeDefinition typeDef = typeCache.getTypeDefinition(objectTypeIdsValues.get(0));
            if (typeDef == null) {
                throw new CmisInvalidArgumentException("Invalid type: " + objectTypeIdsValues.get(0));
            }
        }
....
{code}


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira