예제 #1
0
 @Atomic
 public static List<InfoExecutionCourse> runSearchExecutionCourses(
     AcademicInterval academicInterval, ExecutionDegree executionDegree, String courseName)
     throws NotAuthorizedException {
   CoordinatorExecutionDegreeAuthorizationFilter.instance.execute(executionDegree.getExternalId());
   return serviceInstance.run(academicInterval, executionDegree, courseName);
 }
예제 #2
0
 @Atomic
 public static List<InfoExecutionCourse> runSearchExecutionCourses(
     InfoExecutionPeriod infoExecutionPeriod,
     InfoExecutionDegree infoExecutionDegree,
     InfoCurricularYear infoCurricularYear,
     String executionCourseName)
     throws NotAuthorizedException {
   CoordinatorExecutionDegreeAuthorizationFilter.instance.execute(
       infoExecutionDegree.getExternalId());
   return serviceInstance.run(
       infoExecutionPeriod, infoExecutionDegree, infoCurricularYear, executionCourseName);
 }