Package br.gov.serpro.ouvidoria.model

Examples of br.gov.serpro.ouvidoria.model.Historico


        Long idRemetente = null;
        HistoricoCtrl histCtrl = new HistoricoCtrl(getDaoFactory());
        List lstHist = histCtrl.consultaHistAcionamento(acionamento);
         
        if (lstHist!=null && !lstHist.isEmpty()) {
          Historico histRedirec = (Historico) lstHist.get(0);
          remetente = histRedirec.getFuncionario().getNome();
          idRemetente = histRedirec.getFuncionario().getId();
       
          request.setAttribute("remetenteRedirec", remetente);
          request.setAttribute("idRemetenteRedirec", idRemetente);
        }
     
View Full Code Here


    }

    // verificar se a funcionalidade deve ser gravada em histórico
    Boolean geraHistorico = funcionalidade.getGeraHistorico();
    if (geraHistorico != null && geraHistorico.booleanValue()) {
      Historico historico = new Historico();

      historico.setDataCadastramento(new Timestamp(System
          .currentTimeMillis()));
      historico.setFuncionalidade(funcionalidade);
      historico.setFuncionario(funcionario);
      historico.setAcionamento(acionamento);

      historicoDao.save(historico);
    }
  }
View Full Code Here

TOP

Related Classes of br.gov.serpro.ouvidoria.model.Historico

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.