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

org.graylog2.datatiering.fallback.AutoValue_FallbackDataTieringConfig Maven / Gradle / Ivy

There is a newer version: 6.1.4
Show newest version
package org.graylog2.datatiering.fallback;

import com.fasterxml.jackson.annotation.JsonIgnore;
import jakarta.validation.constraints.NotNull;
import java.lang.String;
import org.joda.time.Period;

final class AutoValue_FallbackDataTieringConfig extends $AutoValue_FallbackDataTieringConfig {
  AutoValue_FallbackDataTieringConfig(String type, Period indexLifetimeMin,
      Period indexLifetimeMax) {
    super(type, indexLifetimeMin, indexLifetimeMax);
  }

  @JsonIgnore
  @NotNull
  public final String getType() {
    return type();
  }

  @JsonIgnore
  @NotNull
  public final Period getIndexLifetimeMin() {
    return indexLifetimeMin();
  }

  @JsonIgnore
  @NotNull
  public final Period getIndexLifetimeMax() {
    return indexLifetimeMax();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy