com.bmc.truesight.saas.meter.client.response.GetProcessInfoResponse 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.response;
import com.bmc.truesight.saas.meter.client.response.model.ProcessEntry;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import org.immutables.value.Value;
import java.util.List;
/**
* Read and parse response from Process Information JSON RPC call
*/
@JsonDeserialize(as = ImmutableGetProcessInfoResponse.class)
@Value.Immutable
public abstract class GetProcessInfoResponse implements Response {
public abstract String status();
public abstract List processes();
}