Beispiel #1
0
 public static List getConfListBeforeMeeting(String username) {
   DictionaryDAO dao = DictionaryDAO.getInstance();
   List confList = new ArrayList();
   try {
     confList = dao.getConfListBeforeMeeting(username);
   } catch (HibernateException he) {
     he.printStackTrace();
   } finally {
     closeSession();
   }
   return confList;
 }