INNER CODE UNIT · Java
dropGroup
scalar-labs/scalardb · core/src/main/java/com/scalar/db/api/AbacAdmin.java:193
default void dropGroup(String policyName, String groupShortName) throws ExecutionException {
throw new UnsupportedOperationException(CoreError.ABAC_NOT_ENABLED.buildMessage());
}
/**
* Retrieves a group that has the given short name for the given policy.
*
* @param policyName the policy name
* @param groupShortName the short name of the group
* @return the group
* @throws ExecutionException if the operation fails
*/
default Optional<Group> getGroup(String policyName, String groupShortName)
throws ExecutionException {
throw new UnsupportedOperationException(CoreError.ABAC_NOT_ENABLED.buildMessage());
}
/**