HDDS-2143. Rename classes under package org.apache.hadoop.utils
Closes #1465
This commit is contained in:
parent
6d4b20c047
commit
111b08a330
|
@ -54,6 +54,19 @@ public final class OMNodeDetails {
|
||||||
this.httpsAddress = httpsAddress;
|
this.httpsAddress = httpsAddress;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "OMNodeDetails["
|
||||||
|
+ "omServiceId=" + omServiceId +
|
||||||
|
", omNodeId=" + omNodeId +
|
||||||
|
", rpcAddress=" + rpcAddress +
|
||||||
|
", rpcPort=" + rpcPort +
|
||||||
|
", ratisPort=" + ratisPort +
|
||||||
|
", httpAddress=" + httpAddress +
|
||||||
|
", httpsAddress=" + httpsAddress +
|
||||||
|
"]";
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder class for OMNodeDetails.
|
* Builder class for OMNodeDetails.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue