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

38 lines
1.1 KiB
Java

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.rjconsultores.ventaboletos.dao.hibernate;
import com.rjconsultores.ventaboletos.dao.ProdRutaDAO;
import com.rjconsultores.ventaboletos.entidad.ProdRuta;
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;
/**
*
* @author Rafius
*/
@Repository("prodRutaDAO")
public class ProdRutaHibernateDAO extends GenericHibernateDAO<ProdRuta, Integer>
implements ProdRutaDAO {
@Autowired
public ProdRutaHibernateDAO(@Qualifier("sessionFactory") SessionFactory factory) {
setSessionFactory(factory);
}
@Override
public List<ProdRuta> obtenerTodos() {
Criteria c = getSession().createCriteria(getPersistentClass());
c.add(Restrictions.eq("activo", Boolean.TRUE));
return c.list();
}
}