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

com.cisco.trex.stateless.model.stats.Utilization 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.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

@JsonIgnoreProperties(ignoreUnknown = true)
public class Utilization {
  @JsonProperty("cpu")
  private List cpu = new ArrayList<>();

  @JsonProperty("mbuf_stats")
  private Map>> mbufStats = new HashMap<>();

  @JsonProperty("cpu")
  public List getCpu() {
    return cpu;
  }

  @JsonProperty("cpu")
  public void setCpu(final List cpu) {
    this.cpu = cpu;
  }

  @JsonProperty("mbuf_stats")
  public Map>> getMbufStats() {
    return mbufStats;
  }

  @JsonProperty("mbuf_stats")
  public void setMbufStats(final Map>> mbufStats) {
    this.mbufStats = mbufStats;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy