INNER CODE UNIT · Java

getNamespacePolicies

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

  default List<NamespacePolicy> getNamespacePolicies() throws ExecutionException {
    throw new UnsupportedOperationException(CoreError.ABAC_NOT_ENABLED.buildMessage());
  }

  /**
   * Creates a table policy with the given policy and the given table.
   *
   * @param tablePolicyName the table policy name
   * @param policyName the policy name
   * @param namespaceName the namespace name
   * @param tableName the table name
   * @throws ExecutionException if the operation fails
   */
  default void createTablePolicy(
      String tablePolicyName, String policyName, String namespaceName, String tableName)
      throws ExecutionException {
    throw new UnsupportedOperationException(CoreError.ABAC_NOT_ENABLED.buildMessage());
  }

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…