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

com.datahub.authorization.AuthorizationSession Maven / Gradle / Ivy

Go to download

DataHub Auth API for developers to write custom Authentication & Authorization plugins for DataHub

There is a newer version: 0.14.1-12rc1
Show newest version
package com.datahub.authorization;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

/** Combines a common interface for actor and authorizer which is cached per session */
public interface AuthorizationSession {
  AuthorizationResult authorize(
      @Nonnull final String privilege, @Nullable final EntitySpec resourceSpec);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy