com.datastrato.gravitino.authorization.Group Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
Gravitino is a high-performance, geo-distributed and federated metadata lake.
The newest version!
/*
* Copyright 2024 Datastrato Pvt Ltd.
* This software is licensed under the Apache License version 2.
*/
package com.datastrato.gravitino.authorization;
import com.datastrato.gravitino.Auditable;
import com.datastrato.gravitino.annotation.Evolving;
import java.util.List;
/** The interface of a Group. The Group is the entity which contains users. */
@Evolving
public interface Group extends Auditable {
/**
* The name of the group.
*
* @return The name of the group.
*/
String name();
/**
* The roles of the group.
*
* @return The roles of the group.
*/
List roles();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy