Examples of GetSharedItemRequest


Examples of com.box.boxjavalibv2.requests.GetSharedItemRequest

     *             exception
     * @throws AuthFatalFailureException
     *             exception indicating authentication totally failed
     */
    public BoxItem getSharedItem(final BoxDefaultRequestObject requestObject) throws BoxRestException, BoxServerException, AuthFatalFailureException {
        GetSharedItemRequest request = new GetSharedItemRequest(getConfig(), getObjectMapper(), requestObject);
        return (BoxItem) getResponseAndParseAndTryCast(request, BoxResourceType.ITEM, getObjectMapper());
    }
View Full Code Here

Examples of com.box.boxjavalibv2.requests.GetSharedItemRequest

        super(config, resourceHub, parser, auth, restClient);
    }

    @Override
    public BoxItem getSharedItem(final BoxDefaultRequestObject requestObject) throws BoxRestException, BoxServerException, AuthFatalFailureException {
        GetSharedItemRequest request = new GetSharedItemRequest(getConfig(), getJSONParser(), requestObject);
        return (BoxItem) getResponseAndParseAndTryCast(request, BoxResourceType.ITEM, 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.