com.datahub.authentication.AuthenticatorContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datahub-auth-api Show documentation
Show all versions of datahub-auth-api Show documentation
DataHub Auth API for developers to write custom Authentication & Authorization plugins for DataHub
package com.datahub.authentication;
import com.datahub.plugins.auth.authentication.Authenticator;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import javax.annotation.Nonnull;
/**
* Context class to provide Authenticator implementations with concrete objects necessary for their
* correct workings. DataHub creates {@link AuthenticatorContext} instance and provides it as an
* argument to init method of {@link Authenticator}
*/
public class AuthenticatorContext {
private final Map contextMap;
public AuthenticatorContext(@Nonnull final Map context) {
Objects.requireNonNull(context);
contextMap = new HashMap<>();
contextMap.putAll(context);
}
/**
* @return contextMap The contextMap contains below key and value {@link
* com.datahub.plugins.PluginConstant#PLUGIN_HOME PLUGIN_HOME}: Directory path where plugin is
* installed
*/
@Nonnull
public Map data() {
return contextMap;
}
}