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

org.graylog2.rest.resources.tools.responses.AutoValue_LookupTableTesterResponse Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package org.graylog2.rest.resources.tools.responses;

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

final class AutoValue_LookupTableTesterResponse extends $AutoValue_LookupTableTesterResponse {
  AutoValue_LookupTableTesterResponse(boolean empty, boolean error, String errorMessage, Object key,
      Object value) {
    super(empty, error, errorMessage, key, value);
  }

  @JsonIgnore
  public final boolean isEmpty() {
    return empty();
  }

  @JsonIgnore
  public final boolean isError() {
    return error();
  }

  @JsonIgnore
  public final String getErrorMessage() {
    return errorMessage();
  }

  @JsonIgnore
  @Nullable
  public final Object getKey() {
    return key();
  }

  @JsonIgnore
  @Nullable
  public final Object getValue() {
    return value();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy