* @throws AuthFatalFailureException
* exception indicating authentication totally failed
*/
public BoxCollaboration getCollaboration(final String collabId, BoxDefaultRequestObject requestObject) throws BoxRestException, BoxServerException,
AuthFatalFailureException {
GetCollaborationRequest request = new GetCollaborationRequest(getConfig(), getObjectMapper(), collabId, requestObject);
return (BoxCollaboration) getResponseAndParseAndTryCast(request, BoxResourceType.COLLABORATION, getObjectMapper());
}