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

org.graylog2.datatiering.hotonly.AutoValue_HotOnlyDataTieringConfig Maven / Gradle / Ivy

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

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

final class AutoValue_HotOnlyDataTieringConfig extends $AutoValue_HotOnlyDataTieringConfig {
  AutoValue_HotOnlyDataTieringConfig(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