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

org.graylog2.rest.models.streams.requests.AutoValue_UpdateStreamRequest Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version
package org.graylog2.rest.models.streams.requests;

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.lang.Boolean;
import java.lang.String;
import javax.annotation.Nullable;

final class AutoValue_UpdateStreamRequest extends $AutoValue_UpdateStreamRequest {
  AutoValue_UpdateStreamRequest(String title, String description, String matchingType,
      Boolean removeMatchesFromDefaultStream, String indexSetId) {
    super(title, description, matchingType, removeMatchesFromDefaultStream, indexSetId);
  }

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

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

  @JsonIgnore
  @Nullable
  public final String getMatchingType() {
    return matchingType();
  }

  @JsonIgnore
  @Nullable
  public final Boolean isRemoveMatchesFromDefaultStream() {
    return removeMatchesFromDefaultStream();
  }

  @JsonIgnore
  @Nullable
  public final String getIndexSetId() {
    return indexSetId();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy