Examples of SSOUIAuthenticator


Examples of org.wso2.carbon.identity.authenticator.sso.ui.SSOUIAuthenticator

public class Activator implements BundleActivator {

    private static final Log log = LogFactory.getLog(Activator.class);

    public void start(BundleContext bc) throws Exception {
        SSOUIAuthenticator authenticator = new SSOUIAuthenticator();
        Hashtable<String, String> props = new Hashtable<String, String>();
        props.put(CarbonConstants.AUTHENTICATOR_TYPE, authenticator.getAuthenticatorName());
        bc.registerService(CarbonUIAuthenticator.class.getName(), authenticator, props);
        if (log.isDebugEnabled()) {
            log.debug("Started the SSO Authenticator");
        }
    }
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.