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

org.graylog2.rest.models.tools.responses.AutoValue_PageListResponse Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.lang.String;
import java.util.List;
import javax.annotation.Nullable;
import org.graylog2.database.PaginatedList;

final class AutoValue_PageListResponse extends $AutoValue_PageListResponse {
  AutoValue_PageListResponse(String query, PaginatedList.PaginationInfo paginationInfo, long total,
      String sort, String order, List elements) {
    super(query, paginationInfo, total, sort, order, elements);
  }

  @JsonIgnore
  @Nullable
  public final String getQuery() {
    return query();
  }

  @JsonIgnore
  public final PaginatedList.PaginationInfo getPaginationInfo() {
    return paginationInfo();
  }

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

  @JsonIgnore
  @Nullable
  public final String getSort() {
    return sort();
  }

  @JsonIgnore
  @Nullable
  public final String getOrder() {
    return order();
  }

  @JsonIgnore
  public final List getElements() {
    return elements();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy