INNER CODE UNIT · Java
getLevels
scalar-labs/scalardb · core/src/main/java/com/scalar/db/api/AbacAdmin.java:112
default List<Level> getLevels(String policyName) throws ExecutionException {
throw new UnsupportedOperationException(CoreError.ABAC_NOT_ENABLED.buildMessage());
}
/**
* Creates a compartment with the given short name and long name for the given policy.
*
* @param policyName the policy name
* @param compartmentShortName the short name of the compartment
* @param compartmentLongName the long name of the compartment
* @throws ExecutionException if the operation fails
*/
default void createCompartment(
String policyName, String compartmentShortName, String compartmentLongName)
throws ExecutionException {
throw new UnsupportedOperationException(CoreError.ABAC_NOT_ENABLED.buildMessage());
}