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

net.anotheria.asg.service.remote.EchoRequest Maven / Gradle / Ivy

package net.anotheria.asg.service.remote;

import java.io.Serializable;

public class EchoRequest implements Serializable{
	
	private static final long serialVersionUID = 8124014806417852570L;
	/**
	 * (Local) Time of request.
	 */
	private long requestTime;
	/**
	 * Amount of data to return in an array in bytes.
	 */
	private int echoDataSize;

	public long getRequestTime() {
		return requestTime;
	}
	public void setRequestTime(long requestTime) {
		this.requestTime = requestTime;
	}
	public int getEchoDataSize() {
		return echoDataSize;
	}
	public void setEchoDataSize(int echoDataSize) {
		this.echoDataSize = echoDataSize;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy