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

com.github.ltsopensource.admin.response.PaginationRsp Maven / Gradle / Ivy

package com.github.ltsopensource.admin.response;

import java.util.ArrayList;
import java.util.List;

/**
 * @author Robert HG ([email protected]) on 6/7/15.
 */
public class PaginationRsp {

    private int results = 0;

    private List rows;

    public PaginationRsp() {

    }

    public PaginationRsp(int results, List rows) {
        this.results = results;
        this.rows = rows;
    }

    public int getResults() {
        return results;
    }

    public void setResults(int results) {
        this.results = results;
    }

    public List getRows() {
        return rows == null ? new ArrayList(0) : rows;
    }

    public void setRows(List rows) {
        this.rows = rows;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy