Search in sources :

Example 1 with GrupoAreaConhecimento

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

the class TeachingDocumentsServiceSimpleImpl method createGrupoAreaConhecimento.

@Override
@SuppressWarnings({ "BroadCatchBlock", "TooBroadCatch" })
@Transactional
public Long createGrupoAreaConhecimento(GrupoAreaConhecimentoDTO grupoAreaConhecimento) {
    AreaConhecimentoDAO dao = factory.getAreaConhecimentoDAO();
    GrupoAreaConhecimento _grupo = new GrupoAreaConhecimento(grupoAreaConhecimento);
    Long id = null;
    try {
        id = dao.createGrupoAreaConhecimento(_grupo);
    } catch (DAOException ex) {
        throw new CoreException(ex.getMessage());
    } catch (Exception ex) {
        throw new CoreException("Erro de sistema: " + ex.getMessage());
    }
    return id;
}
Also used : DAOException(com.tomasio.projects.trainning.exception.DAOException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) GrupoAreaConhecimento(com.tomasio.projects.trainning.model.GrupoAreaConhecimento) CoreException(com.tomasio.projects.trainning.exeption.CoreException) DAOException(com.tomasio.projects.trainning.exception.DAOException) Transactional(org.springframework.transaction.annotation.Transactional)

Example 2 with GrupoAreaConhecimento

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

the class TeachingDocumentsServiceSimpleImpl method updateGrupoAreaConhecimento.

@Override
@SuppressWarnings({ "BroadCatchBlock", "TooBroadCatch" })
@Transactional
public void updateGrupoAreaConhecimento(GrupoAreaConhecimentoDTO grupoAreaConhecimento) {
    AreaConhecimentoDAO dao = factory.getAreaConhecimentoDAO();
    GrupoAreaConhecimento _grupo = new GrupoAreaConhecimento(grupoAreaConhecimento);
    Long id = null;
    try {
        dao.updateGrupoAreaConhecimento(_grupo);
    } catch (DAOException ex) {
        throw new CoreException(ex.getMessage());
    } catch (Exception ex) {
        throw new CoreException("Erro de sistema: " + ex.getMessage());
    }
}
Also used : DAOException(com.tomasio.projects.trainning.exception.DAOException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) GrupoAreaConhecimento(com.tomasio.projects.trainning.model.GrupoAreaConhecimento) CoreException(com.tomasio.projects.trainning.exeption.CoreException) DAOException(com.tomasio.projects.trainning.exception.DAOException) Transactional(org.springframework.transaction.annotation.Transactional)

Example 3 with GrupoAreaConhecimento

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

the class HibernateAreaConhecimentoDAO method findAllGruposAreaConhecimento.

@SuppressWarnings("unchecked")
@Override
public List<GrupoAreaConhecimento> findAllGruposAreaConhecimento() throws DAOException {
    Session session = sessionFactory.getCurrentSession();
    List<GrupoAreaConhecimento> grupos;
    try {
        Criteria criteria = session.createCriteria(GrupoAreaConhecimento.class);
        grupos = criteria.list();
        return grupos;
    } catch (HibernateException e) {
        Logger.getLogger(this.getClass().getName()).log(Level.SEVERE, null, e);
        throw new DAOException(MessageHelper.getMessage("indicadores.find.unique.error"));
    }
}
Also used : DAOException(com.tomasio.projects.trainning.exception.DAOException) HibernateException(org.hibernate.HibernateException) GrupoAreaConhecimento(com.tomasio.projects.trainning.model.GrupoAreaConhecimento) Criteria(org.hibernate.Criteria) Session(org.hibernate.Session)

Example 4 with GrupoAreaConhecimento

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

the class HibernateAreaConhecimentoDAO method removeGrupoAreaConhecimento.

@Override
public void removeGrupoAreaConhecimento(Long id) throws DAOException {
    Session session = sessionFactory.getCurrentSession();
    GrupoAreaConhecimento grupo = (GrupoAreaConhecimento) session.get(GrupoAreaConhecimento.class, id);
    try {
        session.delete(grupo);
    } catch (HibernateException e) {
        Logger.getLogger(this.getClass().getName()).log(Level.SEVERE, null, e);
        throw new DAOException(MessageHelper.getMessage("indicadores.remove.error"));
    }
}
Also used : DAOException(com.tomasio.projects.trainning.exception.DAOException) HibernateException(org.hibernate.HibernateException) GrupoAreaConhecimento(com.tomasio.projects.trainning.model.GrupoAreaConhecimento) Session(org.hibernate.Session)

Example 5 with GrupoAreaConhecimento

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

the class TeachingDocumentsServiceSimpleImpl method findGrupoAreaConhecimento.

@Override
@Transactional(readOnly = true)
public GrupoAreaConhecimentoDTO findGrupoAreaConhecimento(Long id) {
    AreaConhecimentoDAO dao = factory.getAreaConhecimentoDAO();
    GrupoAreaConhecimento grupo = null;
    try {
        grupo = dao.findGrupoAreaConhecimento(id);
    } catch (DAOException ex) {
        throw new CoreException("Erro de de acesso ao banco de dados: " + ex.getMessage());
    }
    if (!(grupo == null)) {
        return grupo.createDTO();
    } else {
        return null;
    }
}
Also used : DAOException(com.tomasio.projects.trainning.exception.DAOException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) GrupoAreaConhecimento(com.tomasio.projects.trainning.model.GrupoAreaConhecimento) Transactional(org.springframework.transaction.annotation.Transactional)

Aggregations

DAOException (com.tomasio.projects.trainning.exception.DAOException)6 GrupoAreaConhecimento (com.tomasio.projects.trainning.model.GrupoAreaConhecimento)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 GrupoAreaConhecimentoDTO (com.tomasio.projects.trainning.dto.GrupoAreaConhecimentoDTO)1 Criteria (org.hibernate.Criteria)1