HDDS-840. [JDK11] Fix Javadoc errors in hadoop-hdds-client module. Contributed by Dinesh Chitlangia.
This commit is contained in:
parent
c4d9640028
commit
3420ddd0f8
|
@ -97,9 +97,6 @@ public final class XceiverClientRatis extends XceiverClientSpi {
|
||||||
this.retryPolicy = retryPolicy;
|
this.retryPolicy = retryPolicy;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public void createPipeline() throws IOException {
|
public void createPipeline() throws IOException {
|
||||||
final RaftGroup group = RatisHelper.newRaftGroup(pipeline);
|
final RaftGroup group = RatisHelper.newRaftGroup(pipeline);
|
||||||
|
@ -108,9 +105,6 @@ public final class XceiverClientRatis extends XceiverClientSpi {
|
||||||
(raftClient, peer) -> raftClient.groupAdd(group, peer.getId()));
|
(raftClient, peer) -> raftClient.groupAdd(group, peer.getId()));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public void destroyPipeline() throws IOException {
|
public void destroyPipeline() throws IOException {
|
||||||
final RaftGroup group = RatisHelper.newRaftGroup(pipeline);
|
final RaftGroup group = RatisHelper.newRaftGroup(pipeline);
|
||||||
|
@ -219,7 +213,6 @@ public final class XceiverClientRatis extends XceiverClientSpi {
|
||||||
*
|
*
|
||||||
* @param request Request
|
* @param request Request
|
||||||
* @return Response to the command
|
* @return Response to the command
|
||||||
* @throws IOException
|
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public XceiverClientAsyncReply sendCommandAsync(
|
public XceiverClientAsyncReply sendCommandAsync(
|
||||||
|
|
|
@ -78,9 +78,7 @@ public class ContainerOperationClient implements ScmClient {
|
||||||
containerSizeB = size;
|
containerSizeB = size;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritDoc
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public ContainerWithPipeline createContainer(String owner)
|
public ContainerWithPipeline createContainer(String owner)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
|
@ -173,9 +171,6 @@ public class ContainerOperationClient implements ScmClient {
|
||||||
pipeline.toString());
|
pipeline.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritDoc
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public ContainerWithPipeline createContainer(HddsProtos.ReplicationType type,
|
public ContainerWithPipeline createContainer(HddsProtos.ReplicationType type,
|
||||||
HddsProtos.ReplicationFactor factor, String owner) throws IOException {
|
HddsProtos.ReplicationFactor factor, String owner) throws IOException {
|
||||||
|
@ -280,9 +275,6 @@ public class ContainerOperationClient implements ScmClient {
|
||||||
deleteContainer(containerID, info.getPipeline(), force);
|
deleteContainer(containerID, info.getPipeline(), force);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public List<ContainerInfo> listContainer(long startContainerID,
|
public List<ContainerInfo> listContainer(long startContainerID,
|
||||||
int count) throws IOException {
|
int count) throws IOException {
|
||||||
|
|
Loading…
Reference in New Issue