Example usage for org.apache.hadoop.security.authentication.server AuthenticationFilter subclass-usage

List of usage examples for org.apache.hadoop.security.authentication.server AuthenticationFilter subclass-usage

Introduction

In this page you can find the example usage for org.apache.hadoop.security.authentication.server AuthenticationFilter subclass-usage.

Usage

From source file com.trendmicro.hdfs.webdav.AuthFilter.java

public class AuthFilter extends AuthenticationFilter {

    private static final String CONF_PREFIX = "hadoop.webdav.authentication.";
    private Configuration conf;

    public AuthFilter(Configuration conf) {

From source file net.iridiant.hdfs.webdav.AuthFilter.java

public class AuthFilter extends AuthenticationFilter {

    private static final String CONF_PREFIX = "hadoop.webdav.authentication.";
    private Configuration conf;

    public AuthFilter(Configuration conf) {

From source file org.apache.atlas.web.filters.AtlasAuthenticationFilter.java

/**
 * This enforces authentication as part of the filter before processing the request.
 * todo: Subclass of {@link org.apache.hadoop.security.authentication.server.AuthenticationFilter}.
 */
@Singleton
public class AtlasAuthenticationFilter extends AuthenticationFilter {

From source file org.apache.falcon.security.BasicAuthFilter.java

/**
 * This enforces authentication as part of the filter before processing the request.
 * Subclass of {@link AuthenticationFilter}.
 */
public class BasicAuthFilter extends AuthenticationFilter {

From source file org.apache.falcon.security.FalconAuthenticationFilter.java

/**
 * This enforces authentication as part of the filter before processing the request.
 * Subclass of {@link org.apache.hadoop.security.authentication.server.AuthenticationFilter}.
 */
public class FalconAuthenticationFilter
        extends org.apache.hadoop.security.authentication.server.AuthenticationFilter {

From source file org.apache.oozie.servlet.AuthFilter.java

/**
 * Authentication filter that extends Hadoop-auth AuthenticationFilter to override
 * the configuration loading.
 */
public class AuthFilter extends AuthenticationFilter {
    public static final String OOZIE_PREFIX = "oozie.authentication.";

From source file org.apache.sentry.api.service.thrift.SentryAuthFilter.java

/**
 * SentryAuthFilter is a subclass of AuthenticationFilter,
 * add authorization: Only allowed users could connect the web server.
 */
public class SentryAuthFilter extends AuthenticationFilter {

From source file org.apache.sentry.provider.db.service.thrift.SentryAuthFilter.java

/**
 * SentryAuthFilter is a subclass of AuthenticationFilter,
 * add authorization: Only allowed users could connect the web server.
 */
public class SentryAuthFilter extends AuthenticationFilter {

From source file org.apache.sentry.service.web.SentryAuthFilter.java

/**
 * SentryAuthFilter is a subclass of AuthenticationFilter,
 * add authorization: Only allowed users could connect the web server.
 */
public class SentryAuthFilter extends AuthenticationFilter {

From source file org.apache.solr.security.KerberosFilter.java

public class KerberosFilter extends AuthenticationFilter {

    @Override
    public void init(FilterConfig conf) throws ServletException {
        super.init(conf);
    }