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

com.bmc.truesight.saas.meter.client.response.GetProcessInfoResponse Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy