Examples of CreateCommentRequest


Examples of com.box.boxjavalibv2.requests.CreateCommentRequest

     *             exception
     * @throws AuthFatalFailureException
     *             exception indicating authentication totally failed
     */
    public BoxComment addComment(final BoxCommentRequestObject requestObject) throws BoxRestException, BoxServerException, AuthFatalFailureException {
        CreateCommentRequest request = new CreateCommentRequest(getConfig(), getObjectMapper(), requestObject);
        return (BoxComment) getResponseAndParseAndTryCast(request, BoxResourceType.COMMENT, getObjectMapper());
    }
View Full Code Here

Examples of com.box.boxjavalibv2.requests.CreateCommentRequest

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

    @Override
    public BoxComment addComment(final BoxCommentRequestObject requestObject) throws BoxRestException, BoxServerException, AuthFatalFailureException {
        CreateCommentRequest request = new CreateCommentRequest(getConfig(), getJSONParser(), requestObject);
        return (BoxComment) getResponseAndParseAndTryCast(request, BoxResourceType.COMMENT, 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.