KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > jbi > ServiceConsumer


1 package org.objectweb.celtix.jbi;
2
3 import javax.jbi.component.ComponentContext;
4
5 /**
6  * Defines a service consumer to be started by the Celtix Service
7  * Engine.
8  *
9  */

10 public interface ServiceConsumer extends Runnable JavaDoc {
11
12     void stop();
13     void setComponentContext(ComponentContext componentCtx);
14
15 }
16
Popular Tags