Examples of GetAllCollectionsRequest


Examples of com.box.boxjavalibv2.requests.GetAllCollectionsRequest

        return (BoxItemCollection) getResponseAndParseAndTryCast(request, BoxResourceType.COLLECTION, getJSONParser());
    }

    @Override
    public BoxCollection getAllCollections(final BoxPagingRequestObject requestObject) throws BoxRestException, BoxServerException, AuthFatalFailureException {
        GetAllCollectionsRequest request = new GetAllCollectionsRequest(getConfig(), getJSONParser(), requestObject);

        return (BoxCollection) getResponseAndParseAndTryCast(request, BoxResourceType.COLLECTIONS, getJSONParser());
    }
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.