}
protected static String createFolder( String folderName ) throws Exception {
PropertiesImpl props = new PropertiesImpl();
props.addProperty(new PropertyIdImpl(PropertyIds.OBJECT_TYPE_ID, BaseTypeId.CMIS_FOLDER.value()));
props.addProperty(new PropertyStringImpl(PropertyIds.NAME, folderName));
return dotRepo.createFolder(CMISUtils.REPOSITORY_ID, props,
getdefaultHostId(), null, null, null, null);
}
protected static ObjectList doQuery(String query){