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

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

Introduction

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

Usage

From source file com.hortonworks.example.ui.HadoopSsoHandler.java

public class HadoopSsoHandler extends AltKerberosAuthenticationHandler {

    @Override
    public void init(Properties config) throws ServletException {
        super.init(config);
    }

From source file org.apache.oozie.authentication.ExampleAltAuthenticationHandler.java

/**
 * This class provides an implementation of the {@link AltKerberosAuthenticationHandler} as a simple example.  It is meant to be
 * used with the Login Server Example.  The alternate authentication offered by this class is to check for a cookie named
 * "oozie.web.login.auth" and use its value as the username.  More information can be found in the README.txt for the Login Server
 * Example.  Note that this implementation is NOT SECURE and should not be used in production.
 */