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

org.graylog2.migrations.AutoValue_V20161122174500_AssignIndexSetsToStreamsMigration_MigrationCompleted Maven / Gradle / Ivy

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

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

final class AutoValue_V20161122174500_AssignIndexSetsToStreamsMigration_MigrationCompleted extends $AutoValue_V20161122174500_AssignIndexSetsToStreamsMigration_MigrationCompleted {
  AutoValue_V20161122174500_AssignIndexSetsToStreamsMigration_MigrationCompleted(String indexSetId,
      Set completedStreamIds, Set failedStreamIds) {
    super(indexSetId, completedStreamIds, failedStreamIds);
  }

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

  @JsonIgnore
  public final Set getCompletedStreamIds() {
    return completedStreamIds();
  }

  @JsonIgnore
  public final Set getFailedStreamIds() {
    return failedStreamIds();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy