diff --git a/api/src/main/java/org/apache/gravitino/SupportsCatalogs.java b/api/src/main/java/org/apache/gravitino/SupportsCatalogs.java index 143e72ad789..989de9164c9 100644 --- a/api/src/main/java/org/apache/gravitino/SupportsCatalogs.java +++ b/api/src/main/java/org/apache/gravitino/SupportsCatalogs.java @@ -116,8 +116,8 @@ Catalog alterCatalog(String catalogName, CatalogChange... changes) * * * It is equivalent to calling {@code dropCatalog(ident, false)}. @@ -154,19 +154,19 @@ boolean dropCatalog(String catalogName, boolean force) throws NonEmptyEntityException, CatalogInUseException; /** - * Activate a catalog. If the catalog is already activated, this method does nothing. + * Enable a catalog. If the catalog is already enable, this method does nothing. * * @param catalogName The identifier of the catalog. * @throws NoSuchCatalogException If the catalog does not exist. */ - void activateCatalog(String catalogName) throws NoSuchCatalogException; + void enableCatalog(String catalogName) throws NoSuchCatalogException; /** - * Deactivate a catalog. If the catalog is already deactivated, this method does nothing. Once a - * catalog is deactivated: + * Disable a catalog. If the catalog is already disabled, this method does nothing. Once a catalog + * is disabled: * *