keep alive message shoud not be a interface

This commit is contained in:
Ziver Koc 2007-06-03 10:20:49 +00:00
parent 84383f666c
commit a289d96d6a
2 changed files with 16 additions and 12 deletions

View file

@ -0,0 +1,16 @@
package ei.engine.network.message;
import ei.engine.network.message.type.SystemMessage;
/**
* Tells the destination that the
* source is still online
*
* @author Ziver
*
*/
public class KeepAliveMessage extends Message implements SystemMessage{
private static final long serialVersionUID = 1L;
}

View file

@ -1,12 +0,0 @@
package ei.engine.network.message.type;
/**
* Tells the destination that the
* source is still online
*
* @author Ziver
*
*/
public interface KeepAliveMessage {
}