1 /*2 * JBoss, the OpenSource J2EE webOS3 * 4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package org.jboss.ejb3.test.standalone;8 9 /**10 * @version <tt>$Revision: 44596 $</tt>11 * @author <a HREF="mailto:bdecoste@jboss.com">William DeCoste</a>12 */13 public interface DependsMBean14 {15 public void create () throws Exception ;16 public void start () throws Exception ;17 public void stop () throws Exception ;18 public void destroy () throws Exception ;19 20 }21