Example usage for org.apache.zookeeper.server.auth AuthenticationProvider interface-usage

List of usage examples for org.apache.zookeeper.server.auth AuthenticationProvider interface-usage

Introduction

In this page you can find the example usage for org.apache.zookeeper.server.auth AuthenticationProvider interface-usage.

Usage

From source file com.lami.tuomatuo.mq.zookeeper.server.auth.SASLAuthenticationProvider.java

public class SASLAuthenticationProvider implements AuthenticationProvider {

    public String getScheme() {
        return "sasl";
    }

From source file morello.zk.acl.CustomUserAuthenticationProvider.java

public class CustomUserAuthenticationProvider implements AuthenticationProvider {

    @Override
    public String getScheme() {
        return "user";
    }

From source file org.talend.esb.locator.server.auth.SLAuthenticationProvider.java

public class SLAuthenticationProvider implements AuthenticationProvider {

    private static final Logger LOG = Logger.getLogger(SLAuthenticationProvider.class.getName());

    public static final String SL_READ = "SL_READ";

From source file org.trustedanalytics.auth.gateway.zookeeper.integration.testserver.BackdoorAuthProvider.java

public class BackdoorAuthProvider implements AuthenticationProvider {
    @Override
    public String getScheme() {
        return "backdoor";
    }