Examples of ObjectInFolderList


Examples of org.apache.chemistry.opencmis.commons.data.ObjectInFolderList

        }

        String repositoryId = args[0];
        String folderId = args[1];

        ObjectInFolderList list = binding.getNavigationService().getChildren(repositoryId, folderId, null, null, null,
                null, null, null, null, null, null);

        for (ObjectInFolderData object : list.getObjects()) {
            output.println(getPropertyValue(object, PropertyIds.OBJECT_ID) + "\t"
                    + getPropertyValue(object, PropertyIds.NAME) + "\t"
                    + getPropertyValue(object, PropertyIds.OBJECT_TYPE_ID));
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.