1 5 package SOFA.SOFAnode.InOut.Connector; 6 7 import SOFA.SOFAnode.InOut.Bundle; 8 import SOFA.SOFAnode.InOut.InOutException; 9 10 13 public interface CNInOut2Client { 14 16 18 public void obtain (String [] offers, java.lang.String [] components, String sofaNode) throws InOutException; 19 20 public void distribute (String [] offers, java.lang.String [] components, String [] sofaNodes) throws InOutException; 21 22 public void obtainOffers (String [] offers, String sofaNode) throws InOutException; 23 24 public void distributeOffers (String [] offers, String [] sofaNodes) throws InOutException; 25 26 public void obtainComponents (String [] components, String sofaNode) throws InOutException; 27 28 public void distributeComponents (String [] components, String [] sofaNodes) throws InOutException; 29 30 public Bundle list (); 31 } 32 | Popular Tags |