Package org.cast.cwm.data.builders

Examples of org.cast.cwm.data.builders.UserCriteriaBuilder


      add(periodStudentSelectForm);
   
  }
 
  protected UserListModel getUserListModel() {
    UserCriteriaBuilder c = new UserCriteriaBuilder(); // see below - can we avoid this repetition?
    c.setGetAllUsers(false);
    c.setRole(Role.STUDENT);
    c.setPeriod(periodChoice.getModel());
    return new UserListModel(c);
  }
View Full Code Here


          }
        });

        // 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;
View Full Code Here

    }   

  }
 
  protected UserListModel getUserListModel() {
    UserCriteriaBuilder c = new UserCriteriaBuilder();
    c.setGetAllUsers(false);
    c.setRole(Role.STUDENT);
    c.setPeriod(ISISession.get().getCurrentPeriodModel());
    return new UserListModel(c);
 
View Full Code Here

TOP

Related Classes of org.cast.cwm.data.builders.UserCriteriaBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.