Examples of SAML2SSOUIAuthenticator


Examples of org.wso2.carbon.identity.authenticator.saml2.sso.ui.authenticator.SAML2SSOUIAuthenticator

            acsParams.put("url-pattern","/acs");
            acsParams.put("display-name", "SAML SSO Assertion Consumer Service");
            ctxt.getBundleContext().registerService(Servlet.class.getName(), acsServlet, acsParams);

            // register the UI authenticator
            SAML2SSOUIAuthenticator authenticator = new SAML2SSOUIAuthenticator();
            Hashtable<String, String> props = new Hashtable<String, String>();
            props.put(CarbonConstants.AUTHENTICATOR_TYPE, authenticator.getAuthenticatorName());
            ctxt.getBundleContext().registerService(CarbonUIAuthenticator.class.getName(), authenticator, props);


            //todo : remove the info message used for debugging..
            log.info("SAML2 SSO Authenticator FE Bundle activated successfully.");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.