org.demoiselle.jee.persistence.crud.ResultSet Maven / Gradle / Ivy
/*
* Demoiselle Framework
*
* License: GNU Lesser General Public License (LGPL), version 3 or later.
* See the lgpl.txt file in the root directory or .
*/
package org.demoiselle.jee.persistence.crud;
import java.util.List;
import org.demoiselle.jee.core.api.persistence.Result;
public class ResultSet implements Result{
private int init;
private int qtde;
private long total;
private List content;
public int getInit() {
return init;
}
public void setInit(int init) {
this.init = init;
}
public int getQtde() {
return qtde;
}
public void setQtde(int qtde) {
this.qtde = qtde;
}
public long getTotal() {
return total;
}
public void setTotal(long total) {
this.total = total;
}
public List getContent() {
return content;
}
public void setContent(List content) {
this.content = content;
}
}