File tree 3 files changed +25
-7
lines changed
server/src/main/java/org/opensearch/gateway/remote
3 files changed +25
-7
lines changed Original file line number Diff line number Diff line change @@ -996,11 +996,4 @@ public String toString() {
996
996
+ '}' ;
997
997
}
998
998
}
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
- }
1006
999
}
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change 10
10
11
11
import org .opensearch .gateway .remote .ClusterMetadataManifest ;
12
12
13
+ /**
14
+ * A class encapsulating the cluster state manifest and its remote uploaded path
15
+ */
13
16
public class RemoteClusterStateManifestInfo {
14
17
15
18
private final ClusterMetadataManifest clusterMetadataManifest ;
You can’t perform that action at this time.
0 commit comments