Skip to content

Commit

Permalink
Revert BlobStore Annotations added in previous commit
Browse files Browse the repository at this point in the history
Signed-off-by: Shreyansh Ray <rayshrey@amazon.com>
  • Loading branch information
rayshrey committed Apr 4, 2024
1 parent 1efe68f commit 2854383
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@

package org.opensearch.common.blobstore;

import org.opensearch.common.annotation.PublicApi;
import org.opensearch.core.action.ActionListener;

import java.io.IOException;
Expand All @@ -49,7 +48,6 @@
*
* @opensearch.internal
*/
@PublicApi(since = "2.3.0")
public interface BlobContainer {

/**
Expand Down Expand Up @@ -201,7 +199,6 @@ default long readBlobPreferredLength() {
/**
* The type representing sort order of blob names
*/
@PublicApi(since = "2.3.0")
enum BlobNameSortOrder {

LEXICOGRAPHIC(Comparator.comparing(BlobMetadata::name));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,11 @@

package org.opensearch.common.blobstore;

import org.opensearch.common.annotation.PublicApi;

/**
* An interface for providing basic metadata about a blob.
*
* @opensearch.internal
*/
@PublicApi(since = "2.3.0")
public interface BlobMetadata {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,11 @@

package org.opensearch.common.blobstore;

import org.opensearch.common.annotation.PublicApi;

/**
* The result of deleting multiple blobs from a {@link BlobStore}.
*
* @opensearch.internal
*/
@PublicApi(since = "2.3.0")
public final class DeleteResult {

public static final DeleteResult ZERO = new DeleteResult(0, 0);
Expand Down

0 comments on commit 2854383

Please sign in to comment.