com.cisco.trex.stateless.model.stats.UtilizationCPU Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trex-java-sdk Show documentation
Show all versions of trex-java-sdk Show documentation
Java client SDK provides an implementation for TRex RPC APIs
package com.cisco.trex.stateless.model.stats;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
@JsonIgnoreProperties(ignoreUnknown = true)
public class UtilizationCPU {
@JsonProperty("history")
private List history;
@JsonProperty("ports")
private List ports;
@JsonProperty("history")
public List getHistory() {
return history;
}
@JsonProperty("history")
public void setHistory(final List history) {
this.history = history;
}
@JsonProperty("ports")
public List getPorts() {
return ports;
}
@JsonProperty("ports")
public void setPorts(final List ports) {
this.ports = ports;
}
}