com.fasterxml.clustermate.client.operation.DeleteOperationResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clustermate-client Show documentation
Show all versions of clustermate-client Show documentation
Building blocks for client libraries that access
ClusterMate-based service.
package com.fasterxml.clustermate.client.operation;
import com.fasterxml.clustermate.client.call.DeleteCallParameters;
public class DeleteOperationResult extends WriteOperationResult
{
/**
* Possible parameter overrides in use for this call
*/
protected final DeleteCallParameters _params;
public DeleteOperationResult(OperationConfig config, DeleteCallParameters params) {
super(config);
_params = params;
}
}