* @throws ClientServicesException
*/
public EntityList<Comment> getFileComment(String fileId, String commentId,
Map<String, String> parameters, Map<String, String> headers) throws ClientServicesException {
if (StringUtil.isEmpty(fileId)) {
throw new ClientServicesException(null, Messages.Invalid_FileId);
}
if (StringUtil.isEmpty(commentId)) {
throw new ClientServicesException(null, Messages.Invalid_CommentId);
}
String accessType = AccessType.AUTHENTICATED.getText();
String requestUri = FileUrls.MYUSERLIBRARY_DOCUMENT_COMMENT_ENTRY.format(this,
FileUrlParts.accessType.get(accessType), FileUrlParts.fileId.get(fileId),