Skip to content

Commit

Permalink
Updating javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
chris.ditcher authored and chris.ditcher committed Mar 26, 2024
1 parent 847e073 commit a918232
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,14 @@ void updateStudentGuidPenXrefRecord(
@Query( "update GraduationStudentRecordEntity e set e.recalculateProjectedGrad = 'Y' where e.studentStatus = 'CUR' and e.programCompletionDate is null and (e.studentGrade = '12' or e.studentGrade = 'AD')")
void updateGradStudentRecalcFlagsForCurrentStudentsWithNullCompletion();

/**
* Find a GraduationStudentRecord By Student ID using generics. Pass an object with the
* same subset of field names, getters/setters of GraduationStudentRecordEntity to return
* objects with a subset of values. More info: https://docs.spring.io/spring-data/jpa/reference/repositories/projections.html
* @param studentId the student ID
* @param type The class type of the object you wish to use
* @return
* @param <T>
*/
<T> T findByStudentID(UUID studentId, Class<T> type);
}

0 comments on commit a918232

Please sign in to comment.