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

com.bmc.truesight.saas.meter.client.command.Command Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
package com.bmc.truesight.saas.meter.client.command;

import com.bmc.truesight.saas.meter.client.response.Response;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.google.common.collect.ImmutableMap;

import java.util.Map;

public interface Command {

    @JsonIgnore
    Class getResponseType();

    String getMethod();

    default String getJsonrpc() {
        return "2.0";
    }

    default Map getParams() {
        return ImmutableMap.of();
    }




}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy