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

com.visenze.visearch.PagedResult Maven / Gradle / Ivy

There is a newer version: 1.14.5
Show newest version
package com.visenze.visearch;

import com.visenze.visearch.internal.ResponseBase;

import java.util.List;

public class PagedResult extends ResponseBase {

    protected Integer page;

    protected Integer limit;

    protected Integer total;

    protected List result;

    protected Integer groupLimit;

    protected String groupByKey ;

    public PagedResult() {}

    public Integer getPage() {
        return page;
    }

    public Integer getLimit() {
        return limit;
    }

    public Integer getTotal() {
        return total;
    }

    public List getResult() {
        return result;
    }

    public Integer getGroupLimit() { return groupLimit; }

    public String getGroupByKey() { return groupByKey; }

    public void setPage(Integer page) {
        this.page = page;
    }

    public void setLimit(Integer limit) {
        this.limit = limit;
    }

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

    public void setGroupLimit(Integer groupLimit) { this.groupLimit = groupLimit; }

    public void setGroupByKey(String groupByKey) { this.groupByKey = groupByKey; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy