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

org.graylog2.rest.models.system.responses.AutoValue_SizeBasedRotationStrategyResponse Maven / Gradle / Ivy

There is a newer version: 6.0.5
Show newest version
package org.graylog2.rest.models.system.responses;

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

final class AutoValue_SizeBasedRotationStrategyResponse extends $AutoValue_SizeBasedRotationStrategyResponse {
  AutoValue_SizeBasedRotationStrategyResponse(String type, int maxNumberOfIndices,
      long maxSizePerIndex) {
    super(type, maxNumberOfIndices, maxSizePerIndex);
  }

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

  @JsonIgnore
  public final int getMaxNumberOfIndices() {
    return maxNumberOfIndices();
  }

  @JsonIgnore
  public final long getMaxSizePerIndex() {
    return maxSizePerIndex();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy