Examples of consultaHistAcionamento()


Examples of br.gov.serpro.ouvidoria.controller.HistoricoCtrl.consultaHistAcionamento()

      // Se o acionamento foi redirecionado, recupera o último histórico
        String remetente = "";
        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();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.