}
});
// List students and their appropriate status messages
// get the list of students in this period
UserCriteriaBuilder c = new UserCriteriaBuilder();
c.setRole(Role.STUDENT);
c.setPeriod(ISISession.get().getCurrentPeriodModel());
// add the students to the table
table.add(new ListView<User>("student", new UserListModel(c)) {
private static final long serialVersionUID = 1L;