Package br.gov.serpro.ouvidoria.controller

Examples of br.gov.serpro.ouvidoria.controller.HistoricoCtrl


        String funcionalidade = (String) request
                .getAttribute(Constants.SR_FUNCIONALIDADE);

        if (funcionalidade != null && funcionalidade.trim().length() > 0) {

            HistoricoCtrl historico = new HistoricoCtrl(
                    new HibernateDaoFactory());

                       
            Long funcionarioId = (Long) request.getSession().getAttribute(Constants.PA_FUNCIONARIO);
           
            try {
               
              FuncionarioCtrl funcionarioCtrl = new FuncionarioCtrl(getDaoFactory());
             
              Funcionario funcionario = (Funcionario) funcionarioCtrl.get(funcionarioId)
             
                historico.Log(funcionario, funcionalidade, acionamento);
            } catch (DaoException e) {
                if (Constants.DEBUG) {
                    e.printStackTrace();
                }
            }
View Full Code Here


        String funcionalidade = (String) request
                .getAttribute(Constants.SR_FUNCIONALIDADE);

        if (funcionalidade != null && funcionalidade.trim().length() > 0) {

          HistoricoCtrl historico = new HistoricoCtrl(
                    new HibernateDaoFactory());
         
          try {
         
              Long funcionarioId = (Long) request.getSession().getAttribute(Constants.PA_FUNCIONARIO);
             
            FuncionarioCtrl funcionarioCtrl = new FuncionarioCtrl(getDaoFactory());
           
            Funcionario funcionario = (Funcionario) funcionarioCtrl.get(funcionarioId);           
           
                historico.Log(funcionario, funcionalidade, acionamento);
            } catch (DaoException e) {
                if(Constants.DEBUG) {
                    e.printStackTrace();
                }
            }
View Full Code Here

          Constants.DES_KEY, acionamento.getId().toString()));

      // 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

Related Classes of br.gov.serpro.ouvidoria.controller.HistoricoCtrl

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.