AdmMono/src/com/rjconsultores/ventaboletos/dao/hibernate/GrupoRutaHibernateDAO.java

41 lines
1.2 KiB
Java

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.rjconsultores.ventaboletos.dao.hibernate;
import java.util.List;
import org.hibernate.Criteria;
import org.hibernate.SessionFactory;
import org.hibernate.criterion.Restrictions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Repository;
import com.rjconsultores.ventaboletos.dao.GrupoRutaDAO;
import com.rjconsultores.ventaboletos.entidad.GrupoRuta;
/**
*
* @author Bruno H. G. Gouvêa <bruno@rjconsultores.com.br>
*
*/
@Repository("grupoRutaDAO")
public class GrupoRutaHibernateDAO extends GenericHibernateDAO<GrupoRuta, Integer>
implements GrupoRutaDAO {
@Autowired
public GrupoRutaHibernateDAO(@Qualifier("sessionFactory") SessionFactory factory) {
setSessionFactory(factory);
}
public List<GrupoRuta> buscarPorNome(String descgrupo) {
Criteria c = getSession().createCriteria(getPersistentClass());
c.add(Restrictions.eq("activo", Boolean.TRUE));
c.add(Restrictions.eq("descgrupo", descgrupo));
return c.list();
}
}