use of com.tomasio.projects.trainning.model.Indicacao in project trainning by fernandotomasio.
the class HibernateIndicacaoDAO method findAllIndicacoesInstrutorByPessoaId.
@SuppressWarnings("unchecked")
@Override
public List<Indicacao> findAllIndicacoesInstrutorByPessoaId(Long pessoaId, Date exercicio) throws DAOException {
SimpleDateFormat df = new SimpleDateFormat("yyyy");
if (exercicio == null) {
throw new IllegalArgumentException("Parâmetro exercício não pode ser nulo");
}
try {
exercicio = df.parse(df.format(exercicio));
} catch (ParseException ex) {
Logger.getLogger(HibernateIndicacaoDAO.class.getName()).log(Level.SEVERE, null, ex);
}
Session session = sessionFactory.getCurrentSession();
try {
List<Indicacao> indicacoes = session.createQuery("from IndicacaoInstrutor indicacao " + "where indicacao.turma.id in (select turma.id from TurmaEfetiva turma where turma.exercicio = :exercicio) " + "and indicacao.pessoa.id = :pessoaId " + "order by indicacao.id").setDate("exercicio", exercicio).setLong("pessoaId", pessoaId).list();
for (Indicacao indicacao : indicacoes) {
indicacao = proccessIndicacao(indicacao, session);
}
return indicacoes;
} catch (HibernateException e) {
Logger.getLogger(HibernateIndicacaoDAO.class.getName()).log(Level.SEVERE, null, e);
throw new DAOException(MessageHelper.getMessage("indicacoes.find.list.error"));
}
}
use of com.tomasio.projects.trainning.model.Indicacao in project trainning by fernandotomasio.
the class HibernateIndicacaoDAO method find.
@Override
public Indicacao find(Long id) throws DAOException {
Session session = sessionFactory.getCurrentSession();
try {
Indicacao indicacao = (Indicacao) session.get(Indicacao.class, id);
indicacao = proccessIndicacao(indicacao, session);
return indicacao;
} catch (HibernateException e) {
Logger.getLogger(HibernateIndicacaoDAO.class.getName()).log(Level.SEVERE, null, e);
throw new DAOException(MessageHelper.getMessage("indicacoes.find.unique.error"));
}
}
use of com.tomasio.projects.trainning.model.Indicacao in project trainning by fernandotomasio.
the class HibernateIndicacaoDAO method findAllIndicacoesAlunoByPessoaId.
@SuppressWarnings("unchecked")
@Override
public List<Indicacao> findAllIndicacoesAlunoByPessoaId(Long pessoaId, Date exercicio) throws DAOException {
SimpleDateFormat df = new SimpleDateFormat("yyyy");
if (exercicio == null) {
throw new IllegalArgumentException("Parâmetro exercício não pode ser nulo");
}
try {
exercicio = df.parse(df.format(exercicio));
} catch (ParseException ex) {
Logger.getLogger(HibernateIndicacaoDAO.class.getName()).log(Level.SEVERE, null, ex);
}
Session session = sessionFactory.getCurrentSession();
try {
List<Indicacao> indicacoes = session.createQuery("from IndicacaoAluno indicacao " + "where indicacao.turma.id in (select turma.id from TurmaEfetiva turma where turma.exercicio = :exercicio) " + "and indicacao.pessoa.id = :pessoaId " + "order by indicacao.id ").setDate("exercicio", exercicio).setLong("pessoaId", pessoaId).list();
for (Indicacao indicacao : indicacoes) {
indicacao = proccessIndicacao(indicacao, session);
}
return indicacoes;
} catch (HibernateException e) {
Logger.getLogger(HibernateIndicacaoDAO.class.getName()).log(Level.SEVERE, null, e);
throw new DAOException(MessageHelper.getMessage("indicacoes.find.list.error"));
}
}
use of com.tomasio.projects.trainning.model.Indicacao in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method travaDeIndicacao.
@Override
@Transactional(readOnly = true)
public void travaDeIndicacao(IndicacaoDTO indicacao, String chamada) {
IndicacaoDAO dao = factory.getIndicacaoDAO();
Indicacao _indicacao = null;
if (indicacao != null) {
// if (indicacao instanceof IndicacaoAlunoDTO) {
_indicacao = new IndicacaoAluno((IndicacaoAlunoDTO) indicacao);
// } else {
// _indicacao = new IndicacaoInstrutor((IndicacaoInstrutorDTO) indicacao);
// }
}
try {
dao.travaDeIndicacao(_indicacao, chamada);
} catch (DAOException ex) {
throw new CoreException(ex.getMessage());
} catch (Exception ex) {
ex.printStackTrace();
throw new CoreException("Erro em tempo de execução: " + ex.getMessage());
}
}
use of com.tomasio.projects.trainning.model.Indicacao in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method createMatricula.
@Override
@Transactional
public Long createMatricula(MatriculaDTO matricula) {
MatriculaDAO matriculaDAO = factory.getMatriculaDAO();
IndicacaoDAO indicacaoDAO = factory.getIndicacaoDAO();
TurmaDAO turmaDAO = factory.getTurmaDAO();
Matricula _matricula = null;
if (matricula != null) {
if (matricula instanceof MatriculaAlunoDTO) {
_matricula = new MatriculaAluno((MatriculaAlunoDTO) matricula);
} else {
_matricula = new MatriculaInstrutor((MatriculaInstrutorDTO) matricula);
}
}
Long id = null;
try {
Indicacao _indicacao = _matricula.getIndicacao();
TurmaEfetiva _turma = _matricula.getTurma();
id = matriculaDAO.create(_matricula);
_indicacao.setMatriculado(true);
_turma.setAtivado(true);
indicacaoDAO.update(_indicacao);
turmaDAO.update(_turma);
} catch (DAOException ex) {
ex.printStackTrace();
throw new CoreException(ex.getMessage());
} catch (Exception ex) {
ex.printStackTrace();
throw new CoreException("Erro em tempo de execução: " + ex.getMessage());
}
return id;
}
Aggregations