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

org.graylog2.rest.models.system.lookup.AutoValue_DataAdapterApi 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 javax.annotation.Nullable;
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
import org.graylog2.plugin.lookup.LookupDataAdapterConfiguration;

final class AutoValue_DataAdapterApi extends $AutoValue_DataAdapterApi {
  AutoValue_DataAdapterApi(String id, String title, String description, String name,
      String contentPack, LookupDataAdapterConfiguration config) {
    super(id, title, description, name, contentPack, config);
  }

  @JsonIgnore
  @Nullable
  public final String getId() {
    return id();
  }

  @JsonIgnore
  @NotEmpty
  public final String getTitle() {
    return title();
  }

  @JsonIgnore
  public final String getDescription() {
    return description();
  }

  @JsonIgnore
  @NotEmpty
  public final String getName() {
    return name();
  }

  @JsonIgnore
  @Nullable
  public final String getContentPack() {
    return contentPack();
  }

  @JsonIgnore
  @NotNull
  public final LookupDataAdapterConfiguration getConfig() {
    return config();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy