Show AgilePlannerServer.java syntax highlighted
package persister;
import java.rmi.Remote;
import java.rmi.RemoteException;
import java.sql.Timestamp;
public interface AgilePlannerServer extends Remote {
public static final int REG_PORT = 5050;
public static final String BIND_NAME = "AgilePlannerServer";
/****************************************************************************************
* CONNECTION *
****************************************************************************************/
public void register(AgilePlannerClient apc) throws RemoteException;
public void registerServerPersister(AgilePlannerClient apc) throws RemoteException;
public void unregister(long id) throws RemoteException;
/****************************************************************************************
* SERVER FUNCTIONALITY *
****************************************************************************************/
public void sendMessage(Message message) throws RemoteException;
}
See more files for this project here