KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > cache > jmx > LifeCycle


1 package org.jboss.cache.jmx;
2
3 /**
4  * Basic lifecycle methods
5  *
6  * @author <a HREF="mailto:manik@jboss.org">Manik Surtani</a>
7  */

8 public interface LifeCycle
9 {
10    void create() throws Exception JavaDoc;
11
12    void start() throws Exception JavaDoc;
13
14    void stop();
15
16    void destroy();
17
18 }
19
Popular Tags