org.qas.qtest.api.services.common.PagingRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtest-sdk-java Show documentation
Show all versions of qtest-sdk-java Show documentation
A java SDK client wrap qTest REST API
The newest version!
package org.qas.qtest.api.services.common;
import org.qas.api.ApiServiceRequest;
/**
* @author trongle
* @version 1.4.9
*/
public class PagingRequest extends ApiServiceRequest {
private Long projectId;
private int page = 1;
private int pageSize = 100;
public Long getProjectId() {
return projectId;
}
public T setProjectId(Long projectId) {
this.projectId = projectId;
return (T)this;
}
public int getPage() {
return page;
}
public T setPage(int page) {
this.page = page;
return (T)this;
}
public int getPageSize() {
return pageSize;
}
public T setPageSize(int pageSize) {
this.pageSize = pageSize;
return (T)this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy