Skip to content

Commit 5b090ac

Browse files
committed
Add javadoc
Signed-off-by: Sooraj Sinha <soosinha@amazon.com>
1 parent 9feb4be commit 5b090ac

File tree

3 files changed

+25
-7
lines changed

3 files changed

+25
-7
lines changed

server/src/main/java/org/opensearch/gateway/remote/ClusterMetadataManifest.java

-7
Original file line numberDiff line numberDiff line change
@@ -996,11 +996,4 @@ public String toString() {
996996
+ '}';
997997
}
998998
}
999-
1000-
// TODO https://github.com/opensearch-project/OpenSearch/pull/14089
1001-
public static class ClusterStateDiffManifest {
1002-
public String getFromStateUUID() {
1003-
return null;
1004-
}
1005-
}
1006999
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*
2+
* SPDX-License-Identifier: Apache-2.0
3+
*
4+
* The OpenSearch Contributors require contributions made to
5+
* this file be licensed under the Apache-2.0 license or a
6+
* compatible open source license.
7+
*/
8+
9+
package org.opensearch.gateway.remote;
10+
11+
/**
12+
* Manifest of diff between two cluster states
13+
*
14+
* @opensearch.internal
15+
*/
16+
public class ClusterStateDiffManifest {
17+
18+
// TODO https://github.com/opensearch-project/OpenSearch/pull/14089
19+
public String getFromStateUUID() {
20+
return null;
21+
}
22+
}

server/src/main/java/org/opensearch/gateway/remote/model/RemoteClusterStateManifestInfo.java

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010

1111
import org.opensearch.gateway.remote.ClusterMetadataManifest;
1212

13+
/**
14+
* A class encapsulating the cluster state manifest and its remote uploaded path
15+
*/
1316
public class RemoteClusterStateManifestInfo {
1417

1518
private final ClusterMetadataManifest clusterMetadataManifest;

0 commit comments

Comments
 (0)