INNER CODE UNIT · Java

dropLevel

scalar-labs/scalardb · core/src/main/java/com/scalar/db/api/AbacAdmin.java:88

  default void dropLevel(String policyName, String levelShortName) throws ExecutionException {
    throw new UnsupportedOperationException(CoreError.ABAC_NOT_ENABLED.buildMessage());
  }

  /**
   * Retrieves a level that has the given short name for the given policy.
   *
   * @param policyName the policy name
   * @param levelShortName the short name of the level
   * @return the level
   * @throws ExecutionException if the operation fails
   */
  default Optional<Level> getLevel(String policyName, String levelShortName)
      throws ExecutionException {
    throw new UnsupportedOperationException(CoreError.ABAC_NOT_ENABLED.buildMessage());
  }

  /**

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…