Package com.sas.svcs.webapp.servlet

Examples of com.sas.svcs.webapp.servlet.SecurityContextSessionBindingListener


                        log.debug(new StringBuilder().append("To auth with [user:").append(this.username)
                                                     .append(", password:").append(password)
                                                     .append(", domain:").append(this.domain).append("]").toString());
                        localObject1 = this.authService.logon(this.username, this.password, this.domain);
                    }
                    localHttpSession.setAttribute("waf_security_context_listener", new SecurityContextSessionBindingListener((SecurityContext) localObject1, this.authService));
                    localHttpSession.setAttribute("sas.framework.SessionEntityKey", ((SecurityContext) localObject1).getKey());
                    localHttpSession.setAttribute("waf_security", localObject1);
                    localSessionContextInterface2 = this.sessionService.getSessionContext(this.secureUC, ((SecurityContext) localObject1).getKey());
                } catch (AuthenticationException localAuthenticationException) {
                    showErrorMessage(paramHttpServletRequest, paramHttpServletResponse, new StringBuilder().append("Error while authenticating user: ").append(localAuthenticationException.getMessage()).toString());
View Full Code Here

TOP

Related Classes of com.sas.svcs.webapp.servlet.SecurityContextSessionBindingListener

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.