use of com.tomasio.projects.trainning.exception.DAOException in project trainning by fernandotomasio.
the class TeachingDocumentsServiceSimpleImpl method updateRecomendacaoMetodologica.
@Override
@SuppressWarnings({ "BroadCatchBlock", "TooBroadCatch" })
@Transactional
public void updateRecomendacaoMetodologica(RecomendacaoMetodologicaDTO recomendacao) {
RecomendacaoMetodologicaDAO dao = factory.getRecomendacaoMetodologicaDAO();
RecomendacaoMetodologica model = new RecomendacaoMetodologica(recomendacao);
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.exception.DAOException 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.exception.DAOException in project trainning by fernandotomasio.
the class TeachingDocumentsServiceSimpleImpl method updateCurriculoMinimo.
@Override
@Transactional
@SuppressWarnings({ "BroadCatchBlock", "TooBroadCatch" })
public void updateCurriculoMinimo(CurriculoMinimoDTO curriculo) {
CurriculoMinimoDAO dao = factory.getCurriculoMinimoDAO();
CurriculoMinimo model = new CurriculoMinimo(curriculo);
try {
dao.update(model);
} 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.exception.DAOException in project trainning by fernandotomasio.
the class InstructorsServiceSimpleImpl method findAllMatriculasInstrutores.
@Override
@Transactional(readOnly = true)
public MatriculaDTO[] findAllMatriculasInstrutores(Long cursoId, Long pessoaId) {
MatriculaDAO dao = factory.getMatriculaDAO();
MatriculaDTO[] matriculasArray = null;
try {
List<Matricula> matriculas = dao.findAllInstrutoresByCurso(cursoId, pessoaId);
if (matriculas != null) {
matriculasArray = new MatriculaDTO[matriculas.size()];
for (int i = 0; i < matriculas.size(); i++) {
matriculasArray[i] = matriculas.get(i).createDTO();
}
}
} catch (DAOException ex) {
throw new CoreException("Erro de de acesso ao banco de dados: " + ex.getMessage());
}
return matriculasArray;
}
use of com.tomasio.projects.trainning.exception.DAOException in project trainning by fernandotomasio.
the class InstructorsServiceSimpleImpl method findAllHabilitacoesInstrutoresInativas.
@Override
@Transactional(readOnly = true)
public HabilitacaoInstrutorEfetivaDTO[] findAllHabilitacoesInstrutoresInativas(Long cursoId, Long organizacaoId, Long pessoaId) {
HabilitacaoInstrutorDAO dao = factory.getHabilitacaoInstrutorDAO();
HabilitacaoInstrutorEfetivaDTO[] instrutorsArray = null;
try {
List<HabilitacaoInstrutorEfetiva> instrutores = dao.findAllHabilitacoesInativas(cursoId, organizacaoId, pessoaId);
if (instrutores != null) {
instrutorsArray = new HabilitacaoInstrutorEfetivaDTO[instrutores.size()];
for (int i = 0; i < instrutores.size(); i++) {
instrutorsArray[i] = instrutores.get(i).createDTO();
}
}
} catch (DAOException ex) {
throw new CoreException("Erro de de acesso ao banco de dados: " + ex.getMessage());
}
return instrutorsArray;
}
Aggregations