br.com.anteros.bean.validation.constraints.validators.TimeActionResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-Bean-Validation Show documentation
Show all versions of Anteros-Bean-Validation Show documentation
Anteros Bean Validation for Java.
package br.com.anteros.bean.validation.constraints.validators;
public class TimeActionResponse {
private T response;
private long time;
public TimeActionResponse(T response, long time) {
super();
this.response = response;
this.time = time;
}
public TimeActionResponse() {
}
public T getResponse() {
return response;
}
public void setResponse(T response) {
this.response = response;
}
public long getTime() {
return time;
}
public void setTime(long time) {
this.time = time;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy