Example usage for org.apache.hadoop.security GroupMappingServiceProvider interface-usage

List of usage examples for org.apache.hadoop.security GroupMappingServiceProvider interface-usage

Introduction

In this page you can find the example usage for org.apache.hadoop.security GroupMappingServiceProvider interface-usage.

Usage

From source file co.cask.cdap.security.authorization.sentry.binding.MockGroupMappingServiceProvider.java

public class MockGroupMappingServiceProvider implements GroupMappingServiceProvider {

    public MockGroupMappingServiceProvider() {
    }

    @Override

From source file com.cloudera.llama.am.MockGroupMapping.java

public class MockGroupMapping implements GroupMappingServiceProvider {

    @Override
    public List<String> getGroups(String user) throws IOException {
        return Arrays.asList("group");
    }

From source file org.apache.sentry.kafka.MockGroupMappingServiceProvider.java

public class MockGroupMappingServiceProvider implements GroupMappingServiceProvider {

    public MockGroupMappingServiceProvider() {
    }

    @Override

From source file org.wso2.carbon.hdfs.mgt.CarbonRolesToGroupMapping.java

/**
 * An implementation of {@link GroupMappingServiceProvider} which
 * connects directly to an LDAP server for determining group membership.
 * 
 * This provider should be used only if it is necessary to map users to
 * groups that reside exclusively in an Active Directory or LDAP installation.