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());
}
}