All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.hadoop.security.User Maven / Gradle / Ivy

/*
 * Licensed to Elasticsearch under one or more contributor
 * license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright
 * ownership. Elasticsearch licenses this file to you under
 * the Apache License, Version 2.0 (the "License"); you may
 * not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package org.elasticsearch.hadoop.security;

import java.security.PrivilegedAction;
import java.security.PrivilegedExceptionAction;

import javax.security.auth.kerberos.KerberosPrincipal;

import org.elasticsearch.hadoop.EsHadoopException;

/**
 * Provides a platform independent way of accessing user information.
 */
public interface User {

    /**
     * Execute the given action as the user
     * @param action To execute
     * @param  The return type from the action
     * @return Whatever was returned from the action
     */
     T doAs(PrivilegedAction action);

    /**
     * Execute the given action as the user
     * @param action To execute
     * @param  The return type from the action
     * @return Whatever was returned from the action
     * @throws EsHadoopException Should an exception be thrown during the operation
     */
     T doAs(PrivilegedExceptionAction action) throws EsHadoopException;

    /**
     * @param clusterName The cluster name
     * @return a previously added Elasticsearch authentication token, or null if it does not exist
     */
    EsToken getEsToken(String clusterName);

    /**
     * @return all previously added Elasticsearch authentication tokens, or an empty iterable if none exist
     */
    Iterable getAllEsTokens();

    /**
     * Adds the given esToken to the user
     * @param esToken Authentication token for Elasticsearch
     */
    void addEsToken(EsToken esToken);

    /**
     * @return the most appropriate and available user name for this user, or null if one cannot be found
     */
    String getUserName();

    /**
     * @return the KerberosPrincipal attached to the user, or null if it does not exist
     */
    KerberosPrincipal getKerberosPrincipal();

    /**
     * @return true if the current user is a proxy user with a real user underneath it
     */
    boolean isProxyUser();

    /**
     * @return Returns a user provider that will select the real user from any currently logged in user.
     */
    UserProvider getRealUserProvider();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy