HDFS-16027. Replace abstract methods with default methods in JournalNodeMXBean. (#3018)

Reviewed-by: Ayush Saxena <ayushsaxena@apache.org>
This commit is contained in:
Wei-Chiu Chuang 2021-05-18 19:49:00 -07:00 committed by GitHub
parent 27749ce85d
commit 63392376c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 3 deletions

View File

@ -20,6 +20,7 @@
import org.apache.hadoop.classification.InterfaceAudience;
import org.apache.hadoop.classification.InterfaceStability;
import java.util.Collections;
import java.util.List;
/**
@ -41,7 +42,9 @@ public interface JournalNodeMXBean {
*
* @return colon separated host and port.
*/
String getHostAndPort();
default String getHostAndPort() {
return "";
}
/**
* Get list of the clusters of JournalNode's journals
@ -49,12 +52,16 @@ public interface JournalNodeMXBean {
*
* @return list of clusters.
*/
List<String> getClusterIds();
default List<String> getClusterIds() {
return Collections.emptyList() ;
}
/**
* Gets the version of Hadoop.
*
* @return the version of Hadoop.
*/
String getVersion();
default String getVersion() {
return "";
}
}