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

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


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


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

TOP

Related Classes of org.beangle.security.monitor.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.