KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnet > Local > RMI > RMILocalInterface


1 /*
2  * RMILocalInterface.java
3  *
4  * Created on 3. květen 2004, 16:23
5  */

6
7 package SOFA.SOFAnet.Local.RMI;
8
9 import java.rmi.Remote JavaDoc;
10 import java.rmi.RemoteException JavaDoc;
11
12 /**
13  * "Local interface" of the SOFAnet. This interface is used by SOFA runtime.
14  *
15  * @author Ladislav Sobr
16  */

17 public interface RMILocalInterface extends Remote JavaDoc
18 {
19   int acquireComponent(String JavaDoc componentFullName) throws RemoteException JavaDoc;
20   int releaseComponent(String JavaDoc componentFullName) throws RemoteException JavaDoc;
21   int obtainMissingComponent(String JavaDoc componentFullName) throws RMILocalException, RemoteException JavaDoc;
22 }
23
Popular Tags