HDDS-2143. Rename classes under package org.apache.hadoop.utils

Closes #1465
This commit is contained in:
Siyao Meng 2019-09-18 17:00:26 +02:00 committed by Márton Elek
parent 6d4b20c047
commit 111b08a330
No known key found for this signature in database
GPG Key ID: D51EA8F00EE79B28
1 changed files with 13 additions and 0 deletions

View File

@ -54,6 +54,19 @@ private OMNodeDetails(String serviceId, String nodeId,
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.
*/