Package com.dotcms.repackage.org.apache.chemistry.opencmis.commons.data

Examples of com.dotcms.repackage.org.apache.chemistry.opencmis.commons.data.ObjectList


        cont.setBinary("fileAsset", file);
        cont.setLanguageId(1);
        cont = APILocator.getContentletAPI().checkin(cont,user,false);
        APILocator.getContentletAPI().isInodeIndexed(cont.getInode());
       
        ObjectList list = doQuery("SELECT * FROM cmis:document WHERE cmis:name='"+title+"'");
        assertEquals(BigInteger.valueOf(1),list.getNumItems());
        assertEquals(cont.getInode(),list.getObjects().get(0).getId());
    }
View Full Code Here

TOP

Related Classes of com.dotcms.repackage.org.apache.chemistry.opencmis.commons.data.ObjectList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.