All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fasterxml.clustermate.client.call.DeleteCallParameters Maven / Gradle / Ivy

There is a newer version: 0.10.5
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy