Example #1
0
  public static TPifDictionary getCustType(String dictValue) {
    DictionaryDAO dao = DictionaryDAO.getInstance();
    TPifDictionary custType = null;
    try {
      custType = dao.getCustType(dictValue);
    } catch (HibernateException he) {

    } finally {
      closeSession();
    }
    return custType;
  }