Search in sources :

Example 1 with PerfilRelacionamento

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

the class TeachingDocumentsServiceSimpleImpl method updatePerfilRelacionamento.

@Override
@SuppressWarnings({ "BroadCatchBlock", "TooBroadCatch" })
@Transactional
public void updatePerfilRelacionamento(PerfilRelacionamentoDTO perfil) {
    PerfilRelacionamentoDAO dao = factory.getPerfilRelacionamentoDAO();
    PerfilRelacionamento model = new PerfilRelacionamento(perfil);
    try {
        dao.update(model);
    } catch (DAOException ex) {
        throw new CoreException("Erro de de acesso ao banco de dados: " + ex.getMessage());
    } catch (Exception ex) {
        throw new CoreException("Erro de sistema: " + ex.getMessage());
    }
}
Also used : PerfilRelacionamento(com.tomasio.projects.trainning.model.PerfilRelacionamento) DAOException(com.tomasio.projects.trainning.exception.DAOException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) DAOException(com.tomasio.projects.trainning.exception.DAOException) Transactional(org.springframework.transaction.annotation.Transactional)

Example 2 with PerfilRelacionamento

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

the class TeachingDocumentsServiceSimpleImpl method createPerfilRelacionamento.

@Override
@Transactional
@SuppressWarnings({ "BroadCatchBlock", "TooBroadCatch" })
public Long createPerfilRelacionamento(PerfilRelacionamentoDTO perfil) {
    PerfilRelacionamentoDAO dao = factory.getPerfilRelacionamentoDAO();
    PerfilRelacionamento model = new PerfilRelacionamento(perfil);
    Long id = null;
    try {
        id = dao.create(model);
    } catch (DAOException ex) {
        throw new CoreException("Erro de de acesso ao banco de dados: " + ex.getMessage());
    } catch (Exception ex) {
        throw new CoreException("Erro de sistema: " + ex.getMessage());
    }
    return id;
}
Also used : PerfilRelacionamento(com.tomasio.projects.trainning.model.PerfilRelacionamento) DAOException(com.tomasio.projects.trainning.exception.DAOException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) DAOException(com.tomasio.projects.trainning.exception.DAOException) Transactional(org.springframework.transaction.annotation.Transactional)

Example 3 with PerfilRelacionamento

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

the class HibernatePerfilRelacionamentoDAO method findAll.

@Override
public List<PerfilRelacionamento> findAll(Long disciplinaId) throws DAOException {
    Session session = sessionFactory.getCurrentSession();
    try {
        Criteria criteria = session.createCriteria(PerfilRelacionamento.class);
        criteria.add(Restrictions.eq("disciplina.id", disciplinaId));
        @SuppressWarnings("unchecked") List<PerfilRelacionamento> perfis = criteria.list();
        return perfis;
    } catch (HibernateException e) {
        Logger.getLogger(this.getClass().getName()).log(Level.SEVERE, null, e);
        throw new DAOException(MessageHelper.getMessage("perfis.find.list.error"));
    }
}
Also used : PerfilRelacionamento(com.tomasio.projects.trainning.model.PerfilRelacionamento) DAOException(com.tomasio.projects.trainning.exception.DAOException) HibernateException(org.hibernate.HibernateException) Criteria(org.hibernate.Criteria) Session(org.hibernate.Session)

Example 4 with PerfilRelacionamento

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

the class HibernatePerfilRelacionamentoDAO method remove.

@Override
public void remove(Long id) throws DAOException {
    Session session = sessionFactory.getCurrentSession();
    PerfilRelacionamento perfil = (PerfilRelacionamento) session.get(PerfilRelacionamento.class, id);
    try {
        session.delete(perfil);
    } catch (HibernateException e) {
        Logger.getLogger(HibernatePerfilRelacionamentoDAO.class.getName()).log(Level.SEVERE, null, e);
        throw new DAOException("Erro ao remover PerfilRelacionamento!");
    }
}
Also used : PerfilRelacionamento(com.tomasio.projects.trainning.model.PerfilRelacionamento) DAOException(com.tomasio.projects.trainning.exception.DAOException) HibernateException(org.hibernate.HibernateException) Session(org.hibernate.Session)

Example 5 with PerfilRelacionamento

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

the class TeachingDocumentsServiceSimpleImpl method findPerfilRelacionamento.

@Override
@Transactional(readOnly = true)
@SuppressWarnings({ "BroadCatchBlock", "TooBroadCatch" })
public PerfilRelacionamentoDTO findPerfilRelacionamento(Long id) {
    PerfilRelacionamentoDAO dao = factory.getPerfilRelacionamentoDAO();
    PerfilRelacionamento perfil = null;
    try {
        perfil = dao.find(id);
    } catch (DAOException ex) {
        throw new CoreException("Erro de de acesso ao banco de dados: " + ex.getMessage());
    } catch (Exception ex) {
        throw new CoreException("Erro de sistema: " + ex.getMessage());
    }
    if (perfil != null) {
        return perfil.createDTO();
    } else {
        return null;
    }
}
Also used : PerfilRelacionamento(com.tomasio.projects.trainning.model.PerfilRelacionamento) DAOException(com.tomasio.projects.trainning.exception.DAOException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) DAOException(com.tomasio.projects.trainning.exception.DAOException) Transactional(org.springframework.transaction.annotation.Transactional)

Aggregations

DAOException (com.tomasio.projects.trainning.exception.DAOException)6 PerfilRelacionamento (com.tomasio.projects.trainning.model.PerfilRelacionamento)6 CoreException (com.tomasio.projects.trainning.exeption.CoreException)4 Transactional (org.springframework.transaction.annotation.Transactional)4 HibernateException (org.hibernate.HibernateException)2 Session (org.hibernate.Session)2 PerfilRelacionamentoDTO (com.tomasio.projects.trainning.dto.PerfilRelacionamentoDTO)1 Criteria (org.hibernate.Criteria)1