net.anotheria.asg.service.remote.EchoRequest Maven / Gradle / Ivy
package net.anotheria.asg.service.remote;
import java.io.Serializable;
/**
* EchoRequest class.
*
* @author another
* @version $Id: $Id
*/
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;
/**
* Getter for the field requestTime
.
*
* @return a long.
*/
public long getRequestTime() {
return requestTime;
}
/**
* Setter for the field requestTime
.
*
* @param requestTime a long.
*/
public void setRequestTime(long requestTime) {
this.requestTime = requestTime;
}
/**
* Getter for the field echoDataSize
.
*
* @return a int.
*/
public int getEchoDataSize() {
return echoDataSize;
}
/**
* Setter for the field echoDataSize
.
*
* @param echoDataSize a int.
*/
public void setEchoDataSize(int echoDataSize) {
this.echoDataSize = echoDataSize;
}
}