05-27-2014 12:02 PM
public static void main(String[] args) {
Folder root = createSession().getRootFolder();
CmisObject object = createSession().getObjectByPath(
root.getPath() + TEST_FOLDER_NAME);
Folder roota = (Folder) object;
for (int i = 0; i < 1000000000; i++)
for (int j = 0; j < 1000000000; j++) {
createDocument(roota,
TEST_DOCUMENT_NAME_1 + new Date().getTime() + ".jpg");
try {
Thread.sleep(0);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
05-28-2014 08:41 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.