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

org.graylog2.rest.resources.streams.responses.AutoValue_StreamListResponse Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.Collection;

final class AutoValue_StreamListResponse extends $AutoValue_StreamListResponse {
  AutoValue_StreamListResponse(long total, Collection streams) {
    super(total, streams);
  }

  @JsonIgnore
  public final long getTotal() {
    return total();
  }

  @JsonIgnore
  public final Collection getStreams() {
    return streams();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy