KickJava   Java API By Example, From Geeks To Geeks.

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


1 /**
2  * InOut2ClientLocalStub.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 import SOFA.SOFAnode.TR.Connector.CNTR2InOut;
10
11 /**
12  * @author Petr Panuska
13  */

14 public class InOut2ClientLocalStub implements CNInOut2Client {
15   private CNTR2InOut target;
16
17   public void obtain (String JavaDoc[] offers, String JavaDoc[] components, String JavaDoc sofaNode) throws InOutException {
18   }
19
20   public void distribute (String JavaDoc[] offers, String JavaDoc[] components, String JavaDoc[] sofaNodes) throws InOutException {
21   }
22
23   public void obtainOffers (String JavaDoc[] offers, String JavaDoc sofaNode) throws InOutException {
24   }
25
26   public void distributeOffers (String JavaDoc[] offers, String JavaDoc[] sofaNodes) throws InOutException {
27   }
28
29   public void obtainComponents (String JavaDoc[] components, String JavaDoc sofaNode) throws InOutException {
30   }
31
32   public void distributeComponents (String JavaDoc[] components, String JavaDoc[] sofaNodes) throws InOutException {
33   }
34
35   public Bundle list () {
36     return target.list();
37   }
38 }
39
Popular Tags