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

com.twitter.ambrose.model.PaginatedList Maven / Gradle / Ivy

There is a newer version: 0.4.3
Show newest version
package com.twitter.ambrose.model;

import java.util.List;

/**
 * Holds a list of results, as well as pagination info.
 */
public class PaginatedList {
  private List results;
  private String nextPageStart;

  public PaginatedList(List results) {
    this.results = results;
  }

  public List getResults() {
    return results;
  }

  public String getNextPageStart() {
    return nextPageStart;
  }

  public void setNextPageStart(String startKey) {
    this.nextPageStart = startKey;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy