diff --git a/server/src/main/java/org/opensearch/cluster/metadata/Sandbox.java b/server/src/main/java/org/opensearch/cluster/metadata/Sandbox.java index 219f11e2014a2..ae5bf220df2f7 100644 --- a/server/src/main/java/org/opensearch/cluster/metadata/Sandbox.java +++ b/server/src/main/java/org/opensearch/cluster/metadata/Sandbox.java @@ -14,10 +14,10 @@ import java.util.Collections; import java.util.List; -/* -Stub class only, this will be added in Kaushal's PR -This class wil be deleted after that. -* */ +/** + * Stub class only, this will be added in Kaushal's PR + * This class wil be deleted after that. + */ @ExperimentalApi public class Sandbox { // TODO Kaushal should have implemented hashcode and equals @@ -43,12 +43,15 @@ public List getResourceLimits() { return Collections.emptyList(); } - /* - Stub class only, this will be added in Kaushal's PR - This class wil be deleted after that. - * */ + /** + * Stub class only, this will be added in Kaushal's PR + * This class wil be deleted after that. + */ @ExperimentalApi public class ResourceLimit { + /* + Stub class only + */ public Long getThresholdInLong() { return 0L; } @@ -62,10 +65,10 @@ public Long getThreshold() { } } - /* - Stub class only, this will be added in Kaushal's PR - This class wil be deleted after that. - */ + /** + * Stub class only, this will be added in Kaushal's PR + * This class wil be deleted after that. + */ @ExperimentalApi public enum SandboxMode { SOFT("soft"), @@ -94,6 +97,5 @@ public static SandboxMode fromName(String s) { throw new IllegalArgumentException("Invalid value for SandboxMode: " + s); } } - } }