com.bmc.truesight.saas.meter.client.command.VoidCommand 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.VoidResponse;
public abstract class VoidCommand implements Command {
@Override
public Class getResponseType() {
return VoidResponse.class;
}
}