Skip to content

Commit

Permalink
add missing javadocs to new commits
Browse files Browse the repository at this point in the history
Signed-off-by: Nicholas Walter Knize <[email protected]>
  • Loading branch information
nknize committed May 12, 2022
1 parent 2a05ac8 commit 3d97ca1
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,15 @@
/**
* Parses the list of JVM versions which should be denied to run Opensearch engine with due to discovered
* issues or flaws.
*
* @opensearch.internal
*/
public class DenyJvmVersionsParser {
/**
* Provides the reason for the denial
*
* @opensearch.internal
*/
public interface VersionPredicate extends Predicate<Version> {
String getReason();
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/*
* 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.
*/

/** jvm specific bootstrapping */
package org.opensearch.bootstrap.jvm;

0 comments on commit 3d97ca1

Please sign in to comment.