com.bmc.truesight.saas.meter.client.command.Command Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meter-client Show documentation
Show all versions of meter-client Show documentation
A java library for interacting with the TrueSight Meter.
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();
}
}