555657585960616263
Integer integer = null; try { integer = (Integer) save(t); logger.debug("Objeto salvo com sucesso em " + t.getClass()); } catch (HibernateException e) { throw new DaoException(e); } return integer; }
7172737475767778
public void atualizar(T t) throws DaoException { try { merge(t); logger.debug("Objeto atualizado com sucesso em " + t.getClass()); } catch (HibernateException e) { throw new DaoException(e); } }
8687888990919293
public void excluir(T t) throws DaoException { try { delete(t); logger.debug("Objeto removido com sucesso em " + t.getClass()); } catch (HibernateException e) { throw new DaoException(e); } }
101102103104105106107108109
public List<T> listar(Class clazz) throws DaoException { List list = null; try { list = loadAll(clazz); } catch (DataAccessException e) { throw new DaoException(e); } return list; }
120121122123124125126127128
Criteria criteria = hCriteria.createCriteria(t); List list = null; try { list = criteria.list(); } catch (HibernateException e) { throw new DaoException(e); } return list; }
545556575859606162
Integer integer = null; try { integer = (Integer) getHibernateTemplate().save(t); logger.debug("Objeto salvo com sucesso em " + t.getClass()); } catch (HibernateException e) { throw new DaoException(e); } return integer; }
142143144145146147148149150
public T obterPorID(Class clazz, Integer id) throws DaoException { T t = null; try { t = (T) get(clazz, id); } catch (HibernateException e) { throw new DaoException(e); } return t; }
7071727374757677
public void atualizar(T t) throws DaoException { try { getHibernateTemplate().merge(t); logger.debug("Objeto atualizado com sucesso em " + t.getClass()); } catch (HibernateException e) { throw new DaoException(e); } }
8586878889909192
public void excluir(T t) throws DaoException { try { getHibernateTemplate().delete(t); logger.debug("Objeto removido com sucesso em " + t.getClass()); } catch (HibernateException e) { throw new DaoException(e); } }
100101102103104105106107108
public List<T> listar(Class clazz) throws DaoException { List list = null; try { list = getHibernateTemplate().loadAll(clazz); } catch (DataAccessException e) { throw new DaoException(e); } return list; }