KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > TR > Connector > CNTR2InOutRemote


1 /**
2  * CNTR2InOutRemote.java is a part of the SOFA project.
3  * This file was created by pepan on 19.3.2003.
4  */

5 package SOFA.SOFAnode.TR.Connector;
6
7 import java.rmi.Remote JavaDoc;
8 import java.rmi.RemoteException JavaDoc;
9
10 import SOFA.SOFAnode.TR.ComponentInfo;
11 import SOFA.SOFAnode.TR.TRException;
12
13 /**
14  * @author Petr Panuska
15  */

16 public interface CNTR2InOutRemote extends Remote JavaDoc {
17   public void storeBundle (byte[] bundleData) throws RemoteException JavaDoc, TRException;
18
19   public byte[] getBundle (ComponentInfo[] descs, ComponentInfo[] comps, boolean inferiors) throws RemoteException JavaDoc, TRException;
20
21 // public byte[] getMetaBundle (ComponentInfo[] descs) throws RemoteException, TRException;
22

23   public boolean contains (ComponentInfo descrs) throws RemoteException JavaDoc;
24
25   public byte[] list () throws RemoteException JavaDoc;
26 }
27
Popular Tags