Beispiel #1
0
  public Collection getCommercialSchoolList() throws Exception {
    Map<String, Object> hm = new HashMap<String, Object>();
    SchoolService service = new SchoolService();

    List schoolList = new ArrayList();
    try {
      hm.put("personFk", getUmdPersonPk());
      hm.put("schoolType", Constants.SchoolType_Commercial);
    } catch (Exception e) {
      log.debug("* getCommercialSchoolList *ERR********", e);
    }
    schoolList = service.getUserSchoolLabelValue(hm);
    getSession().put(Constants.SchoolType_Commercial_List, schoolList);
    return schoolList;
  }