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

org.graylog2.system.urlwhitelist.AutoValue_LiteralWhitelistEntry Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package org.graylog2.system.urlwhitelist;

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.lang.String;

final class AutoValue_LiteralWhitelistEntry extends $AutoValue_LiteralWhitelistEntry {
  AutoValue_LiteralWhitelistEntry(String id, WhitelistEntry.Type type, String title, String value) {
    super(id, type, title, value);
  }

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

  @JsonIgnore
  public final WhitelistEntry.Type getType() {
    return type();
  }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy