KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > InOut > Connector > CNInOut2Client


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

5 package SOFA.SOFAnode.InOut.Connector;
6
7 import SOFA.SOFAnode.InOut.Bundle;
8 import SOFA.SOFAnode.InOut.InOutException;
9
10 /**
11  * @author Petr Panuska
12  */

13 public interface CNInOut2Client {
14 // public void obtainComponent (String fullName, String sofanode) throws InOutException;
15

16 // public void distributeComponent (String fullName, String[] sofanodes) throws InOutException;
17

18   public void obtain (String JavaDoc[] offers, java.lang.String JavaDoc[] components, String JavaDoc sofaNode) throws InOutException;
19
20   public void distribute (String JavaDoc[] offers, java.lang.String JavaDoc[] components, String JavaDoc[] sofaNodes) throws InOutException;
21
22   public void obtainOffers (String JavaDoc[] offers, String JavaDoc sofaNode) throws InOutException;
23
24   public void distributeOffers (String JavaDoc[] offers, String JavaDoc[] sofaNodes) throws InOutException;
25
26   public void obtainComponents (String JavaDoc[] components, String JavaDoc sofaNode) throws InOutException;
27
28   public void distributeComponents (String JavaDoc[] components, String JavaDoc[] sofaNodes) throws InOutException;
29
30   public Bundle list ();
31 }
32
Popular Tags