1 package org.jboss.cache.jmx;2 3 /**4 * Basic lifecycle methods5 *6 * @author <a HREF="mailto:manik@jboss.org">Manik Surtani</a>7 */8 public interface LifeCycle9 {10 void create() throws Exception ;11 12 void start() throws Exception ;13 14 void stop();15 16 void destroy();17 18 }19