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;
}
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());
}
}
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"));
}
}
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"));
}
}
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;
}
}
Aggregations