com.datahub.authorization.AuthorizedActors 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;
import com.linkedin.common.urn.Urn;
import java.util.List;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Value;
@Value
@AllArgsConstructor(access = AccessLevel.PUBLIC)
@Builder
public class AuthorizedActors {
String privilege;
List users;
List groups;
List roles;
boolean allUsers;
boolean allGroups;
}