Search in sources :

Example 6 with GrupoAreaConhecimento

use of com.tomasio.projects.trainning.model.GrupoAreaConhecimento in project trainning by fernandotomasio.

the class TeachingDocumentsServiceSimpleImpl method findAllGruposAreaConhecimento.

@Override
@Transactional(readOnly = true)
public GrupoAreaConhecimentoDTO[] findAllGruposAreaConhecimento() {
    AreaConhecimentoDAO dao = factory.getAreaConhecimentoDAO();
    GrupoAreaConhecimentoDTO[] gruposArray = null;
    try {
        List<GrupoAreaConhecimento> grupos = dao.findAllGruposAreaConhecimento();
        if (grupos != null) {
            gruposArray = new GrupoAreaConhecimentoDTO[grupos.size()];
            for (int i = 0; i < grupos.size(); i++) {
                gruposArray[i] = grupos.get(i).createDTO();
            }
        }
    } catch (DAOException ex) {
        throw new CoreException("Erro de de acesso ao banco de dados: " + ex.getMessage());
    }
    return gruposArray;
}
Also used : DAOException(com.tomasio.projects.trainning.exception.DAOException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) GrupoAreaConhecimento(com.tomasio.projects.trainning.model.GrupoAreaConhecimento) GrupoAreaConhecimentoDTO(com.tomasio.projects.trainning.dto.GrupoAreaConhecimentoDTO) Transactional(org.springframework.transaction.annotation.Transactional)

Aggregations

DAOException (com.tomasio.projects.trainning.exception.DAOException)6 GrupoAreaConhecimento (com.tomasio.projects.trainning.model.GrupoAreaConhecimento)6 CoreException (com.tomasio.projects.trainning.exeption.CoreException)4 Transactional (org.springframework.transaction.annotation.Transactional)4 HibernateException (org.hibernate.HibernateException)2 Session (org.hibernate.Session)2 GrupoAreaConhecimentoDTO (com.tomasio.projects.trainning.dto.GrupoAreaConhecimentoDTO)1 Criteria (org.hibernate.Criteria)1