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

org.graylog2.shared.system.stats.network.AutoValue_NetworkStats Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version
package org.graylog2.shared.system.stats.network;

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.lang.String;
import java.util.Map;
import javax.annotation.Nullable;

final class AutoValue_NetworkStats extends $AutoValue_NetworkStats {
  AutoValue_NetworkStats(String primaryInterface, Map interfaces,
      NetworkStats.TcpStats tcp) {
    super(primaryInterface, interfaces, tcp);
  }

  @JsonIgnore
  @Nullable
  public final String getPrimaryInterface() {
    return primaryInterface();
  }

  @JsonIgnore
  public final Map getInterfaces() {
    return interfaces();
  }

  @JsonIgnore
  @Nullable
  public final NetworkStats.TcpStats getTcp() {
    return tcp();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy