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

com.fasterxml.clustermate.client.operation.PutOperationResult Maven / Gradle / Ivy

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy