com.datahub.authorization.EntitySpecResolver 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.authorization;
/**
* An Entity Spec Resolver is responsible for resolving a {@link EntitySpec} to a {@link
* ResolvedEntitySpec}.
*/
public interface EntitySpecResolver {
/** Resolve a {@link EntitySpec} to a resolved entity spec. */
ResolvedEntitySpec resolve(EntitySpec entitySpec);
}