use of com.tomasio.projects.trainning.exeption.CoreException in project trainning by fernandotomasio.
the class SystemServiceSimpleImpl method findAllLogByObjectId.
@Override
@Transactional(readOnly = true)
public LogDTO[] findAllLogByObjectId(String objectId) {
LogDAO dao = factory.getLogDAO();
LogDTO[] logsArray = null;
try {
List<LogDTO> logs = dao.findAllByObjectId(objectId);
if (logs != null) {
logsArray = new LogDTO[logs.size()];
logs.toArray(logsArray);
}
} catch (DAOException ex) {
throw new CoreException("Erro de de acesso ao banco de dados: " + ex.getMessage());
}
return logsArray;
}
use of com.tomasio.projects.trainning.exeption.CoreException in project trainning by fernandotomasio.
the class TeachingDocumentsServiceSimpleImpl method findAbreviatura.
@Override
@Transactional(readOnly = true)
@SuppressWarnings({ "BroadCatchBlock", "TooBroadCatch" })
public AbreviaturaDTO findAbreviatura(Long id) {
AbreviaturaDAO dao = factory.getAbreviaturaDAO();
Abreviatura abreviatura = null;
try {
abreviatura = 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 (abreviatura != null) {
return abreviatura.createDTO();
} else {
return null;
}
}
use of com.tomasio.projects.trainning.exeption.CoreException 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.exeption.CoreException in project trainning by fernandotomasio.
the class TeachingDocumentsServiceSimpleImpl method createAtividadeAdministrativa.
@Override
@Transactional
@SuppressWarnings({ "BroadCatchBlock", "TooBroadCatch" })
public Long createAtividadeAdministrativa(AtividadeAdministrativaDTO atividade) {
AtividadeAdministrativaDAO dao = factory.getAtividadeAdministrativaDAO();
AtividadeAdministrativa model = new AtividadeAdministrativa(atividade);
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.exeption.CoreException in project trainning by fernandotomasio.
the class TeachingDocumentsServiceSimpleImpl method findAllApostilas.
@Override
@Transactional(readOnly = true)
@SuppressWarnings({ "BroadCatchBlock", "TooBroadCatch" })
public ApostilaDTO[] findAllApostilas(Long curriculoMinimoId) {
ApostilaDAO dao = factory.getApostilaDAO();
ApostilaDTO[] apostilasArray = null;
try {
List<Apostila> apostilas = dao.findAllApostilas(curriculoMinimoId);
apostilasArray = new ApostilaDTO[apostilas.size()];
for (int i = 0; i < apostilasArray.length; i++) {
apostilasArray[i] = apostilas.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 apostilasArray;
}
Aggregations