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

br.com.anteros.bean.validation.constraints.validators.TimeActionResponse Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
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