org.tkit.quarkus.jpa.test.UserSearchCriteriaDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tkit-quarkus-jpa-tests Show documentation
Show all versions of tkit-quarkus-jpa-tests Show documentation
Module that contains tkit-quarkus-jpa related tests
package org.tkit.quarkus.jpa.test;
import javax.ws.rs.DefaultValue;
import javax.ws.rs.QueryParam;
public class UserSearchCriteriaDTO {
@QueryParam("name")
public String name;
@QueryParam("email")
public String email;
@QueryParam("city")
public String city;
@QueryParam("index")
@DefaultValue("0")
public int index;
@QueryParam("size")
@DefaultValue("10")
public int size;
}