1
|
/**
|
2
|
* Name: RMIControllerInterface.java
|
3
|
* Purpose: Interface for RMI Implementation
|
4
|
* Copyright: 2000 Regents of the University of California and the
|
5
|
* National Center for Ecological Analysis and Synthesis
|
6
|
* Authors: Dan Higgins
|
7
|
*
|
8
|
* Version: '$Id: RMIControllerInterface.java 299 2000-07-27 17:14:36Z higgins $'
|
9
|
* @version 1.1 6/8/00
|
10
|
* @author Dan Higgins - NCEAS
|
11
|
*/
|
12
|
|
13
|
|
14
|
import java.rmi.Remote;
|
15
|
import java.rmi.RemoteException;
|
16
|
|
17
|
public interface RMIControllerInterface extends Remote
|
18
|
{
|
19
|
|
20
|
public void restart() throws RemoteException;
|
21
|
|
22
|
|
23
|
}
|