ExecutionYear executionYear = getSpecificExecutionYear(executionCourseID);
Coordinator coordinator = coordinators.first();
ExecutionYear coordinatorExecutionYear = coordinator.getExecutionDegree().getExecutionYear();
if (executionYear == null || coordinatorExecutionYear.compareTo(executionYear) < 0) {
deny();
}
}
public void deny() throws NotAuthorizedException {