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

io.camunda.operate.model.SearchResult Maven / Gradle / Ivy

package io.camunda.operate.model;

import java.util.Iterator;
import java.util.List;

public class SearchResult implements Iterable {
  private List items;

  private Integer total;

  private List sortValues;

  public List getItems() {
    return items;
  }

  public void setItems(List items) {
    this.items = items;
  }

  public Integer getTotal() {
    return total;
  }

  public void setTotal(Integer total) {
    this.total = total;
  }

  public List getSortValues() {
    return sortValues;
  }

  public void setSortValues(List sortValues) {
    this.sortValues = sortValues;
  }

  public Iterator iterator() {
    return this.items.iterator();
  }
}