*/
public Comment getCommentbyId(final Long commentId) throws EnMeNoResultsFoundException, HibernateException{
Comment comment = getCommentsOperations().getCommentByIdandUser(
commentId, getUserAccount(getUserPrincipalUsername()));
if (comment == null){
throw new EnMeCommentNotFoundException("comment not found");
}
return comment;
}