blob: a789ee08f35b6a2c42a65cf8dbf08944d46731e1 [file] [log] [blame]
Clement Escoffier130ca572008-10-13 07:33:03 +00001
2<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<HTML>
4
5<!-- Mirrored Site: felix.apache.org. File: /site/event-admin-handlers.html. Date: Mon, 13 Oct 2008 06:53:08 GMT -->
6<HEAD>
7 <TITLE>Apache Felix - Event Admin Handlers</TITLE>
8 <LINK rel="stylesheet" href="media.data/site.css" type="text/css" media="all">
9 <META http-equiv="Content-Type" content="text/html;charset=UTF-8">
10 </HEAD>
11 <BODY>
12 <DIV class="title"><DIV class="logo"><A href="index.html"><IMG border="0" alt="Apache Felix" src="media.data/logo.png"></A></DIV><DIV class="header"><A href="http://www.apache.org/"><IMG border="0" alt="Apache" src="media.data/apache.png"></A></DIV></DIV>
13 <DIV class="menu">
14 <UL>
15 <LI><A href="news.html" title="news">news</A></LI>
16 <LI><A href="license.html" title="license">license</A></LI>
17 <LI><SPAN class="nobr"><A href="downloads.html" title="Visit page outside Confluence" rel="nofollow">downloads<SUP><IMG class="rendericon" src="../../cwiki.apache.org/confluence/images/icons/linkext7.gif" height="7" width="7" align="absmiddle" alt="" border="0"></SUP></A></SPAN></LI>
18 <LI><A href="documentation.html" title="documentation">documentation</A></LI>
19 <LI><A href="mailinglists.html" title="mailinglists">mailing lists</A></LI>
20 <LI><A href="contributing.html" title="Contributing">contributing</A></LI>
21 <LI><SPAN class="nobr"><A href="http://www.apache.org/" title="Visit page outside Confluence" rel="nofollow">asf<SUP><IMG class="rendericon" src="../../cwiki.apache.org/confluence/images/icons/linkext7.gif" height="7" width="7" align="absmiddle" alt="" border="0"></SUP></A></SPAN></LI>
22 <LI><SPAN class="nobr"><A href="http://www.apache.org/foundation/sponsorship.html" title="Visit page outside Confluence" rel="nofollow">sponsorship<SUP><IMG class="rendericon" src="../../cwiki.apache.org/confluence/images/icons/linkext7.gif" height="7" width="7" align="absmiddle" alt="" border="0"></SUP></A></SPAN></LI>
23 <LI><SPAN class="nobr"><A href="http://www.apache.org/foundation/thanks.html" title="Visit page outside Confluence" rel="nofollow">sponsors<SUP><IMG class="rendericon" src="../../cwiki.apache.org/confluence/images/icons/linkext7.gif" height="7" width="7" align="absmiddle" alt="" border="0"></SUP></A></SPAN>
24<!-- ApacheCon Ad -->
25<IFRAME src="http://www.apache.org/ads/button.html" style="border-width:0; float: left" frameborder="0" scrolling="no" width="135" height="135"></IFRAME>
26<P style="height: 100px">
27<!-- ApacheCon Ad --></LI>
28</UL>
29 </DIV>
30 <DIV class="main">
31<TABLE class="sectionMacro" border="0" cellpadding="5" cellspacing="0" width="100%"><TBODY><TR>
32<TD class="confluenceTd" valign="top" width="80%">
33
34<H1><A name="EventAdminHandlers-EventAdminHandlers"></A>Event Admin Handlers</H1>
35
36<P>The goal of the Event Admin Handlers is to allow event communications between iPOJO component instances. The implementation of these handlers relies on an event admin services. It enables the iPOJO component to listen to a list of topics and to receive all related event. It also allows components to send events in an easy way.</P>
37
38<P>Hereafter is presented a small example of the metadata.xml file :</P>
39<DIV class="code"><DIV class="codeContent">
40<PRE class="code-xml">&lt;ipojo
41 <SPAN class="code-keyword">xmlns:ev</SPAN>=<SPAN class="code-quote">&quot;org.apache.felix.ipojo.handlers.event.EventAdminHandler&quot;</SPAN>&gt;
42 <SPAN class="code-tag">&lt;component className=<SPAN class="code-quote">&quot;...MyComponent&quot;</SPAN>&gt;</SPAN>
43 &lt;ev:subscriber
44 name=<SPAN class="code-quote">&quot;mySubscriber&quot;</SPAN>
45 callback=<SPAN class="code-quote">&quot;receive&quot;</SPAN>
46 topics=<SPAN class="code-quote">&quot;foo&quot;</SPAN>/&gt;
47 &lt;ev:publisher
48 name=<SPAN class="code-quote">&quot;myPublisher&quot;</SPAN>
49 field=<SPAN class="code-quote">&quot;m_publisher&quot;</SPAN>
50 topics=<SPAN class="code-quote">&quot;bar,nuts&quot;</SPAN>/&gt;
51 <SPAN class="code-tag">&lt;/component&gt;</SPAN>
52 <SPAN class="code-tag">&lt;instance component=<SPAN class="code-quote">&quot;...MyComponent&quot;</SPAN>/&gt;</SPAN>
53<SPAN class="code-tag">&lt;/ipojo&gt;</SPAN></PRE>
54</DIV></DIV>
55<P>You need to specify the namespace of the Handler. You can find here one event subscriber (named mySubscriber) and one event publisher (named myPublisher). In these handler configurations, the name parameter is mandatory. The topics parameter is optional as it can be specified in the instance configuration. The callback parameter of the mySubscriber element is mandatory and indicates the method that handles received events. In this case, this method must have a single argument of type org.osgi.service.event.Event. The field parameter of the myPublisher element indicates the field (of type org.apache.felix.ipojo.handlers.event.publisher.Publisher) that is used by the POJO to send events on the specified topics. All type compliance will be checked by the handler at component instantiation time.</P>
56
57<P>Here is an example of the component implementation, compatible with the given description :</P>
58<DIV class="code"><DIV class="codeContent">
59<PRE class="code-java"><SPAN class="code-keyword">import</SPAN> org.apache.felix.ipojo.handlers.event.publisher.Publisher;
60<SPAN class="code-keyword">import</SPAN> org.osgi.service.event.Event;
61
62<SPAN class="code-keyword">public</SPAN> class MyComponent ... {
63 <SPAN class="code-keyword">private</SPAN> Publisher m_publisher;
64 <SPAN class="code-keyword">public</SPAN> void receive(Event e) {
65 <SPAN class="code-comment">// Event received
66</SPAN> <SPAN class="code-comment">// Do something with the event}
67</SPAN>
68 <SPAN class="code-keyword">public</SPAN> void doSomething() {
69 Dictionary e = <SPAN class="code-keyword">new</SPAN> Properties();
70 <SPAN class="code-comment">//...
71</SPAN> <SPAN class="code-comment">// Fill out the event
72</SPAN>
73 <SPAN class="code-comment">// Send event
74</SPAN> m_publisher.send(e);
75 }
76}</PRE>
77</DIV></DIV>
78
79<H1><A name="EventAdminHandlers-Download"></A>Download</H1>
80
81<P>The event admin handlers (to send and receive events) are available in the Felix trunk in the iPOJO project. See the <A href="download.html" title="Download">Download</A> page to download and compile these sources.</P>
82
83<H1><A name="EventAdminHandlers-Howdoesitwork%3F"></A>How does it work?</H1>
84
85<P>The handler will parse the description provided in the metadata, and register for you the EventHandler in the OSGi Registry. On one hand, your POJO will receive each event through the handler. With this handler you can specify different callback methods for different topics. On the other side, the handler instantiates and injects configured Publisher references in your POJO, so you can send events transparently through these publishers.</P>
86
87<H1><A name="EventAdminHandlers-EventHandlerSpecification"></A>EventHandler Specification</H1>
88
89<P>Here you can find all configuration options of the EventAdmin handler. As seen before, the handler contains two components : the event subscriber and the event publisher. These components can be configured, using several attributes, as described below. Some of these attributes can be (re)defined in the instance configuration.</P>
90
91<P>Handler namespace : org.apache.felix.ipojo.handlers.event.EventAdminHandler</P>
92
93<H2><A name="EventAdminHandlers-Eventsubscriberattributes"></A>Event subscriber attributes</H2>
94
95<TABLE class="confluenceTable"><TBODY>
96<TR>
97<TH class="confluenceTh"> Attribute name </TH>
98<TH class="confluenceTh"> Required </TH>
99<TH class="confluenceTh"> Description </TH>
100</TR>
101<TR>
102<TD class="confluenceTd"> <EM>name</EM> </TD>
103<TD class="confluenceTd"> YES </TD>
104<TD class="confluenceTd"> The name of the event subscriber, acting as a unique identifier. </TD>
105</TR>
106<TR>
107<TD class="confluenceTd"> <EM>callback</EM> </TD>
108<TD class="confluenceTd"> YES </TD>
109<TD class="confluenceTd"> The name of the POJO's method that will be called each time an event is received. This method takes only one parameter, of typeorg.osgi.service.event.Eventby default, but this type can be overridden by defining the data-key and/or the data-type attributes. </TD>
110</TR>
111<TR>
112<TD class="confluenceTd"> <EM>topics</EM> </TD>
113<TD class="confluenceTd"> YES&#42; </TD>
114<TD class="confluenceTd"> The comma-separated-list of the topics that the handler will listen to. Each event sent on a topic present in this list will be sent to the specified callback method. </TD>
115</TR>
116<TR>
117<TD class="confluenceTd"> <EM>data-key</EM> </TD>
118<TD class="confluenceTd"> NO </TD>
119<TD class="confluenceTd"> The data key is used when you want to receive data events. This attribute's value is the key corresponding to the received data in the event's dictionary. <BR clear="all">
120If you use this attribute, the parameter passed to the callback method is the the value associated to this key, not the whole event. <BR clear="all">
121This attribute is generally used with the <EM>data-type</EM>attribute to specify the received object type. <BR clear="all">
122If an event is received and it does not contain such a key, it is ignored (with a warning message). </TD>
123</TR>
124<TR>
125<TD class="confluenceTd"> <EM>data-type</EM> </TD>
126<TD class="confluenceTd"> NO </TD>
127<TD class="confluenceTd"> This attribute is associated to the data-key attribute. It specifies the type of objects (java.lang.Objectby default) that the callback expects. It is used to determine the unique callback method (in case of multiple methods with the same name) and to check type compliance at event reception. <BR clear="all">
128Data events that are not corresponding to the specified type will be ignored (with a warning message). </TD>
129</TR>
130<TR>
131<TD class="confluenceTd"> <EM>filter</EM> </TD>
132<TD class="confluenceTd"> NO&#42; </TD>
133<TD class="confluenceTd"> The event filter is used to filter incoming events before sending them to the callback. The syntax of this field is described in the OSGi EventAdmin Specification. If you don't specify a filter, all events sent on the listened topics will be considered. </TD>
134</TR>
135</TBODY></TABLE>
136<P>&#42; These attributes can be (re)defined in the instance configuration.</P>
137
138<H2><A name="EventAdminHandlers-Eventpublisherattributes"></A>Event publisher attributes</H2>
139
140<TABLE class="confluenceTable"><TBODY>
141<TR>
142<TH class="confluenceTh"> Attribute name </TH>
143<TH class="confluenceTh"> Required </TH>
144<TH class="confluenceTh"> Description </TH>
145</TR>
146<TR>
147<TD class="confluenceTd"> <EM>name</EM> </TD>
148<TD class="confluenceTd"> YES </TD>
149<TD class="confluenceTd"> The name of the event publisher, acting as a unique identifier. </TD>
150</TR>
151<TR>
152<TD class="confluenceTd"> <EM>field</EM> </TD>
153<TD class="confluenceTd"> YES </TD>
154<TD class="confluenceTd"> The name of the POJO's field that will be used to send events. The field is initialized at component instantiation time. The type of the field must be : org.apache.felix.ipojo.handlers.event.publisher.Publisher. Despite it creates a dependency between the component code and the handler, this system allows hiding the whole complexity of event sending. </TD>
155</TR>
156<TR>
157<TD class="confluenceTd"> <EM>topics</EM> </TD>
158<TD class="confluenceTd"> YES&#42; </TD>
159<TD class="confluenceTd"> The comma-separated-list of the topics on which events will be sent. All subscribers that are listening to one of these topics will receive the events. </TD>
160</TR>
161<TR>
162<TD class="confluenceTd"> <EM>data-key</EM> </TD>
163<TD class="confluenceTd"> NO </TD>
164<TD class="confluenceTd"> The data key is used when you want to send data events. This attribute's value is the key, in the event's dictionary, in which sent data are stored. When you use the <EM>sendData</EM> method of the Publisher, the given object is placed in the event dictionary, associated with the specified data-key. <BR clear="all">
165The default value of this attribute is user.data. </TD>
166</TR>
167<TR>
168<TD class="confluenceTd"> <EM>synchronous</EM> </TD>
169<TD class="confluenceTd"> NO </TD>
170<TD class="confluenceTd"> Determines if event sending is synchronous or not. By default, events are sent asynchronously, but you can specify there the desired behaviour of the Publisher. <BR clear="all">
171The default value of this attribute is &quot;false&quot;. </TD>
172</TR>
173</TBODY></TABLE>
174<P>&#42; These attributes can be (re)defined in the instance configuration.</P>
175
176<H2><A name="EventAdminHandlers-Instanceconfiguration"></A>Instance configuration</H2>
177
178<P>Some of the described attributes can be (re)defined in the instance configuration section of your metadata file. Its permits to configure event management instance by instance. The following properties are used by the handler :</P>
179<UL>
180 <LI><EM>event.topics</EM> : overrides <EM>topics</EM> attribute, available for both subscribers and publishers configuration</LI>
181 <LI><EM>event.filter</EM> : overrides <EM>filter</EM> attribute, available for subscribers configuration only.</LI>
182</UL>
183
184
185<H2><A name="EventAdminHandlers-Publisherinterface"></A>Publisher interface</H2>
186
187<P>The Publisher interface is the link between the component code and the handler. It permits to publish events on the topics specified in the component's description (or instance configuration). The implemented methods are :</P>
188<UL>
189 <LI>public void send<FONT color="#000000">(Dictionary content);</FONT><BR>
190This method is used to send a standard event, with the specified content. Some specific properties may be added in the content to satisfy EventAdmin specification. (e.g., event.topic).</LI>
191 <LI>public void sendData<FONT color="#000000">(Object o);</FONT><BR>
192This method is the easier way to send data. The given object is placed in the event dictionary according to the <EM>data-key</EM> attribute (or its default value). Then, this dictionary is sent as a normal event.</LI>
193</UL>
194
195
196<H1><A name="EventAdminHandlers-HandlerArchitecture"></A>Handler Architecture</H1>
197
198<P>Here is shown the global architecture of the EventHandler : the interactions between the user components (i.e., POJO), the handler and the OSGi runtime environment.</P>
199
200<P><IMG src="event-admin-handlers.data/handler-arch.png" align="absmiddle" border="0"></P>
201
202<H1><A name="EventAdminHandlers-EventHandlerFeatures"></A>EventHandler Features</H1>
203
204<P>In this section, you will find some examples of the handler's features.</P>
205
206<H2><A name="EventAdminHandlers-Instancecustomization"></A>Instance customization</H2>
207
208<P>As described in the 'Instance configuration' section, you can (re)define some of the subscribers or publishers attributes. You can notice that required attributes that are not defined in the component description must be defined in the instance configuration section. Hereafter is an example of an instance configuration of this handler :</P>
209<DIV class="code"><DIV class="codeContent">
210<PRE class="code-xml">&lt;ipojo
211 <SPAN class="code-keyword">xmlns:ev</SPAN>=<SPAN class="code-quote">&quot;org.apache.felix.ipojo.handlers.event.EventAdminHandler&quot;</SPAN>&gt;
212 <SPAN class="code-tag">&lt;component className=<SPAN class="code-quote">&quot;...MyComponent&quot;</SPAN>&gt;</SPAN>
213 &lt;ev:subscriber
214 name=<SPAN class="code-quote">&quot;mySubscriber&quot;</SPAN>
215 callback=<SPAN class="code-quote">&quot;handleEvent&quot;</SPAN>/&gt;
216 &lt;ev:publisher
217 name=<SPAN class="code-quote">&quot;myPublisher&quot;</SPAN>
218 field=<SPAN class="code-quote">&quot;m_publisher&quot;</SPAN>/&gt;
219 <SPAN class="code-tag">&lt;/component&gt;</SPAN>
220 <SPAN class="code-tag">&lt;instance component=<SPAN class="code-quote">&quot;...MyComponent&quot;</SPAN>&gt;</SPAN>
221 <SPAN class="code-tag">&lt;property name=<SPAN class="code-quote">&quot;event.topics&quot;</SPAN>&gt;</SPAN>
222 <SPAN class="code-tag">&lt;property name=<SPAN class="code-quote">&quot;mySubscriber&quot;</SPAN> value=<SPAN class="code-quote">&quot;foo&quot;</SPAN>/&gt;</SPAN>
223 <SPAN class="code-tag">&lt;property name=<SPAN class="code-quote">&quot;myPublisher&quot;</SPAN> value=<SPAN class="code-quote">&quot;bar,nuts&quot;</SPAN>/&gt;</SPAN>
224 <SPAN class="code-tag">&lt;/property&gt;</SPAN>
225 <SPAN class="code-tag">&lt;property name=<SPAN class="code-quote">&quot;event.filter&quot;</SPAN>&gt;</SPAN>
226 &lt;property name=<SPAN class="code-quote">&quot;mySubscriber&quot;</SPAN>
227 value=<SPAN class="code-quote">&quot;|((arg=Minibar)(arg=Coconuts))&quot;</SPAN>/&gt;
228 <SPAN class="code-tag">&lt;/property&gt;</SPAN>
229 <SPAN class="code-tag">&lt;/instance&gt;</SPAN>
230<SPAN class="code-tag">&lt;/ipojo&gt;</SPAN></PRE>
231</DIV></DIV>
232
233<H2><A name="EventAdminHandlers-Dataevents"></A>Data events</H2>
234
235<P>One of the most important features of the EventHandler is the capability of sending and receiving data events. You may know that the OSGi EventAdmin Service allows bundles to send custom objects in events, inserting them in the event's dictionary. The EventHandler hides the dictionary manipulation and allows iPOJO components to receive custom objects at any time.</P>
236
237<P>First, you have define the <EM>data-key</EM> attribute in the publisher configuration. Sent objects will be contained in the event dictionary and are accessible with the &quot;user.data&quot; key.</P>
238<DIV class="code"><DIV class="codeContent">
239<PRE class="code-xml">&lt;ipojo
240 <SPAN class="code-keyword">xmlns:ev</SPAN>=<SPAN class="code-quote">&quot;org.apache.felix.ipojo.handlers.event.EventAdminHandler&quot;</SPAN>&gt;
241 <SPAN class="code-tag">&lt;component className=<SPAN class="code-quote">&quot;...DataPublisher&quot;</SPAN>&gt;</SPAN>
242 &lt;ev:publisher
243 name=<SPAN class="code-quote">&quot;myPublisher&quot;</SPAN>
244 field=<SPAN class="code-quote">&quot;m_publisher&quot;</SPAN>
245 topics=<SPAN class="code-quote">&quot;myTopic&quot;</SPAN>
246 data-key=<SPAN class="code-quote">&quot;my.data&quot;</SPAN>/&gt;
247 <SPAN class="code-tag">&lt;/component&gt;</SPAN>
248 <SPAN class="code-tag">&lt;instance component=<SPAN class="code-quote">&quot;...DataPublisher&quot;</SPAN>/&gt;</SPAN>
249<SPAN class="code-tag">&lt;/ipojo&gt;</SPAN></PRE>
250</DIV></DIV>
251<P>Then you can use the <EM>sendData</EM> method of your configured publisher.</P>
252<DIV class="code"><DIV class="codeContent">
253<PRE class="code-java"><SPAN class="code-keyword">import</SPAN> org.apache.felix.ipojo.handlers.event.publisher.Publisher;
254<SPAN class="code-comment">//...
255</SPAN><SPAN class="code-keyword">public</SPAN> class DataPublisher ... {
256 <SPAN class="code-keyword">private</SPAN> Publisher m_publisher;
257
258 <SPAN class="code-keyword">public</SPAN> void doSomething() {
259 <SPAN class="code-comment">// MyFavoriteType <SPAN class="code-keyword">extends</SPAN> MyFavoriteInterface
260</SPAN> MyFavoriteType data = <SPAN class="code-keyword">new</SPAN> MyFavoriteType(...);
261 <SPAN class="code-comment">//...
262</SPAN> <SPAN class="code-comment">// Send a data event
263</SPAN> m_publisher.sendData(data);
264 }
265}</PRE>
266</DIV></DIV>
267<P>The second step is to configure an event subscriber to receive such events. The <EM>data-key</EM> attribute's value of the subscriber must be the same than the publisher's one. The <EM>data-type</EM>describe the type of received data events, and thus, must be compatible with the sent object's type (i.e., super-class or inherited interface). Then you can finally receive the sent object in the callback method. The parameter type of the callback must be the same than the data-type attribute value.</P>
268<DIV class="code"><DIV class="codeContent">
269<PRE class="code-xml">&lt;ipojo
270 <SPAN class="code-keyword">xmlns:ev</SPAN>=<SPAN class="code-quote">&quot;org.apache.felix.ipojo.handlers.event.EventAdminHandler&quot;</SPAN>&gt;
271 <SPAN class="code-tag">&lt;component className=<SPAN class="code-quote">&quot;...DataEventSubscriber&quot;</SPAN>&gt;</SPAN>
272 &lt;ev:subscriber
273 name=<SPAN class="code-quote">&quot;mySubscriber&quot;</SPAN>
274 callback=<SPAN class="code-quote">&quot;handleData&quot;</SPAN>
275 topics=<SPAN class="code-quote">&quot;myTopic&quot;</SPAN>
276 data-key=<SPAN class="code-quote">&quot;my.data&quot;</SPAN>
277 data-type=<SPAN class="code-quote">&quot;my.package.MyFavoriteInterface&quot;</SPAN>/&gt;
278 <SPAN class="code-tag">&lt;/component&gt;</SPAN>
279 <SPAN class="code-tag">&lt;instance component=<SPAN class="code-quote">&quot;...DataEventSubscriber&quot;</SPAN>/&gt;</SPAN>
280<SPAN class="code-tag">&lt;/ipojo&gt;</SPAN></PRE>
281</DIV></DIV>
282<DIV class="code"><DIV class="codeContent">
283<PRE class="code-java"><SPAN class="code-keyword">import</SPAN> my.<SPAN class="code-keyword">package</SPAN>.MyFavoriteInterface;
284<SPAN class="code-comment">//...
285</SPAN><SPAN class="code-keyword">public</SPAN> class DataEventSubscriber ... {
286 <SPAN class="code-keyword">public</SPAN> void handleData(MyFavoriteInterface o) {
287 <SPAN class="code-comment">// <SPAN class="code-object">Object</SPAN> received
288</SPAN> <SPAN class="code-comment">//...
289</SPAN> }
290}</PRE>
291</DIV></DIV>
292
293<H2><A name="EventAdminHandlers-Noteonsynchronouseventsending"></A>Note on synchronous event sending</H2>
294
295<P>By default, events are sent using asynchronous sending (a.k.a.<EM>post</EM> in OSGi EventAdmin). You can use synchronous sending by defining the <EM>synchronous</EM> attribute of your publisher to true.</P>
296
297<P>The behaviour of synchronous event sending is particular when you specify several topics in the publisher description. The event is synchronously sent to each topic, one by one. So when you return from this function, you can be sure that the event has been delivered to each topic.</P>
298
299<H2><A name="EventAdminHandlers-Publisherinstanceinformation"></A>Publisher instance information</H2>
300
301<P>All events sent by a publisher contains the name of the component instance that sent them. Its enables to filter received events depending the sender instance. The instance name is accessible in the event dictionary by the key <EM>publisher.instance.name</EM>. Despite it goes against MOM principles, this property is useful to trace events and especially event sources.</P></TD>
302<TD class="confluenceTd" valign="top" width="20%">
303<H6><A name="EventAdminHandlers-Overview"></A><B>Overview</B></H6>
304<UL>
305 <LI><A href="apache-felix-ipojo.html" title="Apache Felix iPOJO">Home Page</A></LI>
306 <LI><A href="apache-felix-ipojo-feature-overview.html" title="Apache Felix iPOJO Feature Overview">iPOJO Feature Overview</A></LI>
307 <LI><A href="download.html" title="Download">Download &amp; Install </A></LI>
308</UL>
309
310
311<H6><A name="EventAdminHandlers-GettingStarted"></A><B>Getting Started</B></H6>
312<UL>
313 <LI><A href="ipojo-in-10-minutes.html" title="iPOJO in 10 minutes">iPOJO in 10 minutes</A></LI>
314 <LI><A href="ipojo-hello-word-maven-based-tutorial.html" title="iPOJO Hello Word (Maven-Based) tutorial">iPOJO Hello Word &#40;Maven&#45;Based&#41; tutorial</A></LI>
315 <LI><A href="ipojo-advanced-tutorial.html" title="iPOJO Advanced Tutorial">iPOJO Advanced Tutorial</A></LI>
316</UL>
317
318
319<H6><A name="EventAdminHandlers-UserGuide"></A><B>User Guide</B></H6>
320<UL>
321 <LI><A href="describing-components.html" title="Describing components">Describing components (handler list) </A></LI>
322 <LI><A href="how-to-use-ipojo-annotations.html" title="How to use iPOJO Annotations">How to use iPOJO Annotations</A></LI>
323 <LI><A href="using-xml-schemas.html" title="Using XML Schemas">Using XML Schemas</A></LI>
324 <LI><A href="ipojo-advanced-topics.html" title="iPOJO Advanced Topics">Advanced Topics</A></LI>
325 <LI><A href="ipojo-faq.html" title="iPOJO FAQ">FAQ</A></LI>
326</UL>
327
328
329<H6><A name="EventAdminHandlers-Tools"></A><B>Tools</B></H6>
330<UL>
331 <LI><A href="ipojo-eclipse-plug-in.html" title="iPOJO Eclipse Plug-in">iPOJO Eclipse Plug&#45;in</A></LI>
332 <LI><A href="ipojo-ant-task.html" title="iPOJO Ant Task">iPOJO Ant Task</A></LI>
333 <LI><A href="ipojo-maven-plug-in.html" title="iPOJO Maven Plug-in">iPOJO Maven Plug&#45;in</A></LI>
334 <LI><A href="ipojo-concepts-overview.html" title="iPOJO Concepts Overview">iPOJO concepts overview</A></LI>
335</UL>
336
337
338<H6><A name="EventAdminHandlers-DeveloperGuide"></A><B>Developer Guide</B></H6>
339<UL>
340 <LI>API: <SPAN class="nobr"><A href="http://people.apache.org/~clement/ipojo/api/0.8/" title="Visit page outside Confluence" rel="nofollow">0.8<SUP><IMG class="rendericon" src="../../cwiki.apache.org/confluence/images/icons/linkext7.gif" height="7" width="7" align="absmiddle" alt="" border="0"></SUP></A></SPAN></LI>
341 <LI><A href="how-to-write-your-own-handler.html" title="How to write your own handler">How to write your own handler</A></LI>
342 <LI><A href="how-to-use-ipojo-manipulation-metadata.html" title="How to use iPOJO Manipulation Metadata">How to use iPOJO Manipulation Metadata</A></LI>
343</UL>
344
345
346<H6><A name="EventAdminHandlers-Misc%26Contact"></A><B>Misc &amp; Contact</B></H6>
347<UL>
348 <LI><A href="apache-felix-ipojo-issuestracker.html" title="apache-felix-ipojo-issuestracker">Issues Tracker</A></LI>
349 <LI><A href="apache-felix-ipojo-supportedvms.html" title="apache-felix-ipojo-supportedVMs">Supported JVMs</A></LI>
350 <LI><A href="apache-felix-ipojo-supportedosgi.html" title="apache-felix-ipojo-supportedOSGi">Supported OSGi Implementations</A></LI>
351 <LI><A href="future-ideas.html" title="Future Ideas">Future Ideas</A></LI>
352 <LI><A href="contact.html" title="Contact">Contact</A></LI>
353 <LI><A href="related-works.html" title="Related Works">Related Works</A></LI>
354 <LI><A href="article-presentations.html" title="Article & Presentations">Article &amp; Presentations</A></LI>
355</UL>
356
357
358<HR>
359<DIV class="" align="center">
360<P><SPAN class="nobr"><A href="http://cwiki.apache.org/confluence/createrssfeed.action?types=blogpost&amp;statuses=created&amp;statuses=modified&amp;spaces=FELIX&amp;labelString=iPOJO&amp;rssType=atom&amp;maxResults=10&amp;timeSpan=5&amp;publicFeed=true&amp;title=iPOJO%20Atom%20Feed" title="Stay tuned!" rel="nofollow"><IMG src="../../cwiki.apache.org/confluence/images/icons/feed-icon-32x32.png" align="absmiddle" border="0"><SUP><IMG class="rendericon" src="../../cwiki.apache.org/confluence/images/icons/linkext7.gif" height="7" width="7" align="absmiddle" alt="" border="0"></SUP></A></SPAN></P></DIV></TD></TR></TBODY></TABLE>
361 </DIV>
362 </BODY>
363
364<!-- Mirrored Site: felix.apache.org. File: /site/event-admin-handlers.html. Date: Mon, 13 Oct 2008 06:53:08 GMT -->
365</HTML>