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

org.graylog2.rest.models.system.lookup.AutoValue_ErrorStatesRequest Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version
package org.graylog2.rest.models.system.lookup;

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

final class AutoValue_ErrorStatesRequest extends $AutoValue_ErrorStatesRequest {
  AutoValue_ErrorStatesRequest(Set tables, Set dataAdapters, Set caches) {
    super(tables, dataAdapters, caches);
  }

  @JsonIgnore
  @Nullable
  public final Set getTables() {
    return tables();
  }

  @JsonIgnore
  @Nullable
  public final Set getDataAdapters() {
    return dataAdapters();
  }

  @JsonIgnore
  @Nullable
  public final Set getCaches() {
    return caches();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy