Package org.beangle.security.auth.provider.sso

Examples of org.beangle.security.auth.provider.sso.SsoAuthentication


        // remember me
        if (monitor.isEnableRememberMe()) {
          auth = monitor.getRememberMeService().autoLogin(httpRequest);
        }
        if (null == auth) {
          auth = new SsoAuthentication(httpRequest);
          auth.setDetails(userDetailsSource.buildDetails(httpRequest));
        }
        try {
          monitor.authenticate(auth);
        } catch (AuthenticationException e) {
View Full Code Here

TOP

Related Classes of org.beangle.security.auth.provider.sso.SsoAuthentication

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.