public void carregarItemMenuListener(ActionEvent event) { String migalha = null; String idCommandLink = null; if (event.getSource() instanceof HtmlCommandLink) { HtmlCommandLink commandLink = (HtmlCommandLink) event.getSource(); idCommandLink = (String) commandLink.getId(); Acesso acessoTemp = mapAcessos.get(idCommandLink); if (acessoTemp != null) { migalha = acessoTemp.obterMigalha(); } } FacesUtil.adicionarAtributoSessao(MIGALHA, migalha); }
/** * Método responsável por carregar o menu dinâmico do usuário logado * * @return * @throws SystemException */ public String getAcessoMenu() throws SystemException { Usuario usuarioLogado = autenticacaoService.getUsuarioLogado(); Sistema sistema = autenticacaoService.getSistema(); FacesUtil.adicionarAtributoSessao("loginUsuario", usuarioLogado.getLogin()); FacesUtil.adicionarAtributoSessao(ConstantesFingers.USUARIO_LOGADO, usuarioLogado); FacesUtil.adicionarAtributoSessao(ConstantesFingers.SISTEMA, sistema); FacesUtil.adicionarAtributoSessao(ConstantesFingers.LOGIN_USUARIO, usuarioLogado.getLogin()); FacesUtil.adicionarAtributoSessao( ConstantesFingers.NOME_USUARIO, usuarioLogado.getNomeResponsavel()); FacesUtil.adicionarAtributoSessao(ConstantesFingers.ID_USUARIO, usuarioLogado.getCodigo()); Acesso acesso = acessoService.carregaMenuLocal(usuarioLogado.getCodigo(), sistema.getCodigo()); FacesUtil.adicionarAtributoSessao(ConstantesFingers.MENU_DINAMICO, acesso); mapAcessos = (Map<String, Acesso>) FacesUtil.obterAtributoSessao("mapAcessos"); try { FacesUtil.obterFacesContext() .getExternalContext() .redirect(FacesUtil.obterNomeContexto() + PAGINA_PRINCIPAL); FacesUtil.obterFacesContext().responseComplete(); } catch (Exception e) { throw new SystemException(CoreErros.ERRO_LOGOUT); } return null; }