Skip to content

Commit b73200b

Browse files
committed
Fix missing java doc
Signed-off-by: Ashish Singh <ssashish@amazon.com>
1 parent 49941fd commit b73200b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

server/src/main/java/org/opensearch/index/remote/RemoteStoreDataEnums.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
*/
2121
public class RemoteStoreDataEnums {
2222

23+
/**
24+
* Categories of the data in Remote store.
25+
*/
2326
public enum DataCategory {
2427
SEGMENTS("segments", Set.of(DataType.values())),
2528
TRANSLOG("translog", Set.of(DATA, METADATA));
@@ -41,6 +44,9 @@ public String getName() {
4144
}
4245
}
4346

47+
/**
48+
* Types of data in remote store.
49+
*/
4450
public enum DataType {
4551
DATA("data"),
4652
METADATA("metadata"),

0 commit comments

Comments
 (0)