Package comum.util

Examples of comum.util.LogBean


  public void inicializarLogBean() {
    this.logBean = null;
    if(this.request != null) {
      this.loggerAuditoria = Logger.getLogger("AUDITORIA");
      SegurancaECAR seguranca = (SegurancaECAR)this.request.getSession().getAttribute("seguranca");
      this.logBean = new LogBean();
      this.logBean.setIPUsuario(this.request.getRemoteAddr());
      this.logBean.setUsuario(seguranca.getUsuario());
      this.logBean.setCodigoSessao(this.request.getSession().getId());
    }
  }
View Full Code Here

TOP

Related Classes of comum.util.LogBean

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.