com.fasterxml.clustermate.client.call.DeleteCallParameters 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.call;
import com.fasterxml.clustermate.client.StoreClientConfig;
public abstract class DeleteCallParameters
extends CallParameters
{
protected DeleteCallParameters() { super(); }
protected DeleteCallParameters(StoreClientConfig,?> config) {
super(config);
}
protected DeleteCallParameters(DeleteCallParameters base) {
super(base);
}
protected DeleteCallParameters(DeleteCallParameters base, StoreClientConfig,?> config) {
super(config);
}
}