Exemplo n.º 1
0
 private Map<String, Object> checkClassroomAudit(Student student) {
   Map<String, Object> hm = null;
   if (student.getClassroomCompletionDate() != null) {
     if (student.getClassroomCompletionSchoolNumber() != null) {
       hm = new HashMap<String, Object>();
       hm.put("studentFk", student.getStudentPk());
       hm.put("schoolNumber", student.getClassroomCompletionSchoolNumber());
       hm.put("completionDate", student.getClassroomCompletionDate());
       hm.put("completionType", Constants.CompletionType_ClassroomTraining);
     }
   }
   return hm;
 }