com.fasterxml.clustermate.client.operation.PutOperationResult 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.PutCallParameters;
public class PutOperationResult extends WriteOperationResult
{
/**
* Possible parameter overrides in use for this call
*/
protected final PutCallParameters _params;
public PutOperationResult(OperationConfig config, PutCallParameters params)
{
super(config);
_params = params;
}
// generic type to allow for more convenient casting
@SuppressWarnings("unchecked")
public P getParams() { return (P) _params; }
}