KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > server > kernel > NullService


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9 package org.jboss.portal.server.kernel;
10
11 /**
12  * To remove.
13  *
14  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
15  * @version $Revision: 1.1.1.1 $
16  */

17 public class NullService extends BaseService
18 {
19
20    public void registered(Context ctx)
21    {
22       super.registered(ctx);
23    }
24
25    public void addDependsOnMe(ServiceImplementation impl)
26    {
27    }
28
29    public void removeDependsOnMe(ServiceImplementation impl)
30    {
31    }
32
33    public void addIDependOn(ServiceImplementation impl)
34    {
35    }
36
37    public void removeIDependOn(ServiceImplementation impl)
38    {
39    }
40
41    public void create() throws Exception JavaDoc
42    {
43    }
44
45    public void start() throws Exception JavaDoc
46    {
47    }
48
49    public void stop()
50    {
51    }
52
53    public void destroy()
54    {
55    }
56 }
57
Popular Tags