1 5 package SOFA.SOFAnode.InOut.Connector; 6 7 import java.rmi.Remote ; 8 import java.rmi.RemoteException ; 9 10 import SOFA.SOFAnode.InOut.InOutException; 11 12 15 public interface CNInOut2ClientRemote extends Remote { 16 18 20 public void obtain (String [] offers, java.lang.String [] components, String sofaNode) throws RemoteException , InOutException; 22 23 public void distribute (String [] offers, java.lang.String [] components, String [] sofaNodes) throws RemoteException , InOutException; 24 25 public void obtainOffers (String [] offers, String sofaNode) throws RemoteException , InOutException; 26 27 public void distributeOffers (String [] offers, String [] sofaNodes) throws RemoteException , InOutException; 28 29 public void obtainComponents (String [] components, String sofaNode) throws RemoteException , InOutException; 30 31 public void distributeComponents (String [] components, String [] sofaNodes) throws RemoteException , InOutException; 32 33 public byte[] list () throws RemoteException ; 34 } 35 | Popular Tags |