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

com.cisco.trex.stateless.model.stats.UtilizationCPU Maven / Gradle / Ivy

There is a newer version: 1.69
Show newest version
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy