public static EventCommentEx getCommentEx(PartakeConnection con, IPartakeDAOs daos, String commentId) throws DAOException {
EventComment comment = daos.getCommentAccess().find(con, commentId);
if (comment == null) { return null; }
UserEx user = UserDAOFacade.getUserEx(con, daos, comment.getUserId());
if (user == null) { return null; }
return new EventCommentEx(comment, user);
}