use of com.tomasio.projects.trainning.model.AnexoApostila in project trainning by fernandotomasio.
the class TeachingDocumentsServiceSimpleImpl method createAnexoApostila.
@Override
@Transactional
@SuppressWarnings({ "BroadCatchBlock", "TooBroadCatch" })
public Long createAnexoApostila(AnexoApostilaDTO anexo) {
AnexoApostilaDAO dao = factory.getAnexoApostilaDAO();
AnexoApostila model = new AnexoApostila(anexo);
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.AnexoApostila in project trainning by fernandotomasio.
the class TeachingDocumentsServiceSimpleImpl method findAllAnexosApostilas.
@Override
@Transactional(readOnly = true)
@SuppressWarnings({ "BroadCatchBlock", "TooBroadCatch" })
public AnexoApostilaDTO[] findAllAnexosApostilas(Long apostilaId) {
AnexoApostilaDAO dao = factory.getAnexoApostilaDAO();
AnexoApostilaDTO[] anexosArray = null;
try {
List<AnexoApostila> anexos = dao.findAllAnexosApostilas(apostilaId);
anexosArray = new AnexoApostilaDTO[anexos.size()];
for (int i = 0; i < anexosArray.length; i++) {
anexosArray[i] = anexos.get(i).createDTO();
}
} 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.toString());
}
return anexosArray;
}
use of com.tomasio.projects.trainning.model.AnexoApostila in project trainning by fernandotomasio.
the class TeachingDocumentsServiceSimpleImpl method updateAnexoApostila.
@Override
@Transactional
@SuppressWarnings({ "BroadCatchBlock", "TooBroadCatch" })
public void updateAnexoApostila(AnexoApostilaDTO anexo) {
AnexoApostilaDAO dao = factory.getAnexoApostilaDAO();
AnexoApostila model = new AnexoApostila(anexo);
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.AnexoApostila in project trainning by fernandotomasio.
the class TeachingDocumentsServiceSimpleImpl method findAnexoApostila.
@Override
@Transactional(readOnly = true)
@SuppressWarnings({ "BroadCatchBlock", "TooBroadCatch" })
public AnexoApostilaDTO findAnexoApostila(Long id) {
AnexoApostilaDAO dao = factory.getAnexoApostilaDAO();
AnexoApostila anexo = null;
try {
anexo = 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 (anexo != null) {
return anexo.createDTO();
} else {
return null;
}
}
use of com.tomasio.projects.trainning.model.AnexoApostila in project trainning by fernandotomasio.
the class HibernateAnexoApostilaDAO method remove.
@Override
public void remove(Long id) throws DAOException {
Session session = sessionFactory.getCurrentSession();
AnexoApostila anexo = (AnexoApostila) session.get(AnexoApostila.class, id);
try {
session.delete(anexo);
} catch (HibernateException e) {
Logger.getLogger(this.getClass().getName()).log(Level.SEVERE, null, e);
throw new DAOException(MessageHelper.getMessage("anexos.remove.error"));
}
}
Aggregations