Search in sources :

Example 6 with HabilitacaoInstrutorEfetiva

use of com.tomasio.projects.trainning.model.HabilitacaoInstrutorEfetiva in project trainning by fernandotomasio.

the class InstructorsServiceSimpleImpl method updateHabilitacaoInstrutor.

@Override
@Transactional
public void updateHabilitacaoInstrutor(HabilitacaoInstrutorDTO habilitacaoInstrutor) {
    HabilitacaoInstrutorDAO dao = factory.getHabilitacaoInstrutorDAO();
    HabilitacaoInstrutor model = null;
    if (habilitacaoInstrutor instanceof HabilitacaoInstrutorEfetivaDTO) {
        model = new HabilitacaoInstrutorEfetiva((HabilitacaoInstrutorEfetivaDTO) habilitacaoInstrutor);
    } else if (habilitacaoInstrutor instanceof HabilitacaoInstrutorPropostaDTO) {
        model = new HabilitacaoInstrutorProposta((HabilitacaoInstrutorPropostaDTO) habilitacaoInstrutor);
    }
    try {
        dao.update(model);
    } catch (DAOException ex) {
        throw new CoreException("Erro de de acesso ao banco de dados: " + ex.getMessage());
    }
}
Also used : HabilitacaoInstrutorPropostaDTO(com.tomasio.projects.trainning.dto.HabilitacaoInstrutorPropostaDTO) DAOException(com.tomasio.projects.trainning.exception.DAOException) HabilitacaoInstrutorEfetiva(com.tomasio.projects.trainning.model.HabilitacaoInstrutorEfetiva) CoreException(com.tomasio.projects.trainning.exeption.CoreException) HabilitacaoInstrutorProposta(com.tomasio.projects.trainning.model.HabilitacaoInstrutorProposta) HabilitacaoInstrutorEfetivaDTO(com.tomasio.projects.trainning.dto.HabilitacaoInstrutorEfetivaDTO) HabilitacaoInstrutor(com.tomasio.projects.trainning.model.HabilitacaoInstrutor) Transactional(org.springframework.transaction.annotation.Transactional)

Example 7 with HabilitacaoInstrutorEfetiva

use of com.tomasio.projects.trainning.model.HabilitacaoInstrutorEfetiva in project trainning by fernandotomasio.

the class HibernateHabilitacaoInstrutorDAO method findAllHabilitacoesInativas.

@SuppressWarnings("unchecked")
@Override
public List<HabilitacaoInstrutorEfetiva> findAllHabilitacoesInativas(Long cursoId, Long organizacaoId, Long pessoaId) throws DAOException {
    Session session = sessionFactory.getCurrentSession();
    try {
        Criteria criteria = session.createCriteria(HabilitacaoInstrutorEfetiva.class);
        criteria.createAlias("curso", "c");
        criteria.createAlias("pessoa", "p");
        if (cursoId != null && cursoId > 0L) {
            criteria.add(Restrictions.eq("c.id", cursoId));
        }
        if (organizacaoId != null && organizacaoId > 0L) {
            criteria.add(Restrictions.eq("p.organizacao.id", organizacaoId));
        }
        if (pessoaId != null && pessoaId > 0L) {
            criteria.add(Restrictions.eq("p.id", pessoaId));
        }
        criteria.add(Restrictions.isNotNull("periodo.dataTermino"));
        criteria.add(Restrictions.lt("periodo.dataTermino", new Date()));
        criteria.addOrder(Order.asc("p.nome"));
        criteria.addOrder(Order.asc("c.codigo"));
        List<HabilitacaoInstrutorEfetiva> instrutores = criteria.list();
        return instrutores;
    } catch (HibernateException e) {
        Logger.getLogger(HibernateTreinamentoSolicitadoDAO.class.getName()).log(Level.SEVERE, null, e);
        throw new DAOException(MessageHelper.getMessage("instrutores.find.list.error"));
    }
}
Also used : DAOException(com.tomasio.projects.trainning.exception.DAOException) HabilitacaoInstrutorEfetiva(com.tomasio.projects.trainning.model.HabilitacaoInstrutorEfetiva) HibernateException(org.hibernate.HibernateException) Criteria(org.hibernate.Criteria) Date(java.util.Date) Session(org.hibernate.Session)

Aggregations

DAOException (com.tomasio.projects.trainning.exception.DAOException)7 HabilitacaoInstrutorEfetiva (com.tomasio.projects.trainning.model.HabilitacaoInstrutorEfetiva)7 HabilitacaoInstrutorEfetivaDTO (com.tomasio.projects.trainning.dto.HabilitacaoInstrutorEfetivaDTO)5 CoreException (com.tomasio.projects.trainning.exeption.CoreException)5 Transactional (org.springframework.transaction.annotation.Transactional)5 HabilitacaoInstrutorPropostaDTO (com.tomasio.projects.trainning.dto.HabilitacaoInstrutorPropostaDTO)2 HabilitacaoInstrutor (com.tomasio.projects.trainning.model.HabilitacaoInstrutor)2 HabilitacaoInstrutorProposta (com.tomasio.projects.trainning.model.HabilitacaoInstrutorProposta)2 Date (java.util.Date)2 Criteria (org.hibernate.Criteria)2 HibernateException (org.hibernate.HibernateException)2 Session (org.hibernate.Session)2