use of com.tomasio.projects.trainning.model.HabilitacaoInstrutorEfetiva 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;
}
use of com.tomasio.projects.trainning.model.HabilitacaoInstrutorEfetiva in project trainning by fernandotomasio.
the class HibernateHabilitacaoInstrutorDAO method findAllHabilitacoesEfetivas.
@SuppressWarnings("unchecked")
@Override
public List<HabilitacaoInstrutorEfetiva> findAllHabilitacoesEfetivas(Long cursoId, Long organizacaoId, Long pessoaId) throws DAOException {
Session session = sessionFactory.getCurrentSession();
try {
Criteria criteria = session.createCriteria(HabilitacaoInstrutorEfetiva.class);
criteria.createAlias("curso", "c");
criteria.createAlias("pessoa", "p");
if (cursoId != null && cursoId > 0L) {
criteria.add(Restrictions.eq("c.id", cursoId));
}
if (organizacaoId != null && organizacaoId > 0L) {
criteria.add(Restrictions.eq("p.organizacao.id", organizacaoId));
}
if (pessoaId != null && pessoaId > 0L) {
criteria.add(Restrictions.eq("p.id", pessoaId));
}
criteria.add(Restrictions.eq("p.ativo", true));
criteria.addOrder(Order.asc("p.nome"));
criteria.addOrder(Order.asc("c.codigo"));
criteria.add(Restrictions.or(Restrictions.isNull("periodo.dataTermino"), Restrictions.gt("periodo.dataTermino", new Date()), Restrictions.eq("periodo.dataTermino", new Date())));
List<HabilitacaoInstrutorEfetiva> instrutores = criteria.list();
return instrutores;
} catch (HibernateException e) {
Logger.getLogger(HibernateTreinamentoSolicitadoDAO.class.getName()).log(Level.SEVERE, null, e);
throw new DAOException(MessageHelper.getMessage("instrutores.find.list.error"));
}
}
use of com.tomasio.projects.trainning.model.HabilitacaoInstrutorEfetiva in project trainning by fernandotomasio.
the class InstructorsServiceSimpleImpl method createHabilitacaoInstrutor.
@Override
@Transactional
public Long createHabilitacaoInstrutor(HabilitacaoInstrutorDTO habilitacaoInstrutor) {
HabilitacaoInstrutorDAO dao = factory.getHabilitacaoInstrutorDAO();
HabilitacaoInstrutor model = null;
if (habilitacaoInstrutor instanceof HabilitacaoInstrutorEfetivaDTO) {
model = new HabilitacaoInstrutorEfetiva((HabilitacaoInstrutorEfetivaDTO) habilitacaoInstrutor);
} else if (habilitacaoInstrutor instanceof HabilitacaoInstrutorPropostaDTO) {
model = new HabilitacaoInstrutorProposta((HabilitacaoInstrutorPropostaDTO) habilitacaoInstrutor);
}
Long id = null;
try {
id = dao.create(model);
} catch (DAOException ex) {
throw new CoreException("Erro de de acesso ao banco de dados: " + ex.getMessage());
}
return id;
}
use of com.tomasio.projects.trainning.model.HabilitacaoInstrutorEfetiva in project trainning by fernandotomasio.
the class InstructorsServiceSimpleImpl method findAllHabilitacoesInstrutoresAtivas.
@Override
@Transactional(readOnly = true)
public HabilitacaoInstrutorEfetivaDTO[] findAllHabilitacoesInstrutoresAtivas(Long cursoId, Long organizacaoId, Long pessoaId) {
HabilitacaoInstrutorDAO dao = factory.getHabilitacaoInstrutorDAO();
HabilitacaoInstrutorEfetivaDTO[] instrutorsArray = null;
try {
List<HabilitacaoInstrutorEfetiva> instrutores = dao.findAllHabilitacoesEfetivas(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;
}
use of com.tomasio.projects.trainning.model.HabilitacaoInstrutorEfetiva in project trainning by fernandotomasio.
the class InstructorsServiceSimpleImpl method findAllHabilitacoesInstrutoresEfetivas.
@Override
@Transactional(readOnly = true)
public HabilitacaoInstrutorEfetivaDTO[] findAllHabilitacoesInstrutoresEfetivas(Long cursoId, Long organizacaoId, Long pessoaId) {
HabilitacaoInstrutorDAO dao = factory.getHabilitacaoInstrutorDAO();
HabilitacaoInstrutorEfetivaDTO[] instrutorsArray = null;
try {
List<HabilitacaoInstrutorEfetiva> instrutores = dao.findAllHabilitacoesEfetivas(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