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