1 5 package SOFA.SOFAnode.TR.Connector; 6 7 import java.rmi.Remote ; 8 import java.rmi.RemoteException ; 9 10 import SOFA.SOFAnode.TR.ComponentInfo; 11 import SOFA.SOFAnode.TR.TRException; 12 13 16 public interface CNTR2InOutRemote extends Remote { 17 public void storeBundle (byte[] bundleData) throws RemoteException , TRException; 18 19 public byte[] getBundle (ComponentInfo[] descs, ComponentInfo[] comps, boolean inferiors) throws RemoteException , TRException; 20 21 23 public boolean contains (ComponentInfo descrs) throws RemoteException ; 24 25 public byte[] list () throws RemoteException ; 26 } 27 | Popular Tags |