Skip to content

Commit

Permalink
Add javadoc
Browse files Browse the repository at this point in the history
Signed-off-by: Sooraj Sinha <soosinha@amazon.com>
  • Loading branch information
soosinha committed Jun 10, 2024
1 parent 9feb4be commit 5d2f154
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -996,11 +996,4 @@ public String toString() {
+ '}';
}
}

// TODO https://github.com/opensearch-project/OpenSearch/pull/14089
public static class ClusterStateDiffManifest {
public String getFromStateUUID() {
return null;
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*
* SPDX-License-Identifier: Apache-2.0
*
* The OpenSearch Contributors require contributions made to
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*/

package org.opensearch.gateway.remote;

/**
* Manifest of diff between two cluster states
*
* @opensearch.internal
*/
public class ClusterStateDiffManifest {

// TODO https://github.com/opensearch-project/OpenSearch/pull/14089
public String getFromStateUUID() {
return null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@

import org.opensearch.gateway.remote.ClusterMetadataManifest;

/**
* A class encapsulating the cluster state manifest and its remote uploaded path
*/
public class RemoteClusterStateManifestInfo {

private final ClusterMetadataManifest clusterMetadataManifest;
Expand Down

0 comments on commit 5d2f154

Please sign in to comment.