コード例 #1
0
ファイル: CommentsLogic.java プロジェクト: tzablock/teammates
 private List<CommentAttributes> getCommentsForGiverAndStatus(
     String courseId, String giverEmail, CommentStatus status) throws EntityDoesNotExistException {
   verifyIsCoursePresent(courseId, "get");
   return commentsDb.getCommentsForGiverAndStatus(courseId, giverEmail, status);
 }