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

org.onetwo.common.data.PageParam Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version
package org.onetwo.common.data;


public class PageParam extends SignedParam {
	
	private int page;
	private int size;
	
	public int getPage() {
		return page;
	}
	public void setPage(int page) {
		this.page = page;
	}
	public int getSize() {
		return size;
	}
	public void setSize(int size) {
		this.size = size;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy