org.tkit.quarkus.jpa.test.UserSearchCriteria 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
The newest version!
package org.tkit.quarkus.jpa.test;
import java.util.Date;
public class UserSearchCriteria {
private Date creationDate;
private String name;
private String email;
private String city;
public Date getCreationDate() {
return creationDate;
}
public void setCreationDate(Date creationDate) {
this.creationDate = creationDate;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
@Override
public String toString() {
return "UserSearchCriteria{" +
"creationDate=" + creationDate +
", name='" + name + '\'' +
", email='" + email + '\'' +
", city='" + city + '\'' +
'}';
}
}