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.servicedependency;8 9 import java.util.UUID ;10 11 /**12 * A UUID.13 * 14 * @author <a HREF="galder.zamarreno@jboss.com">Galder Zamarreno</a>15 * @version $Revision: 44487 $16 */17 public interface UniqueIdMBean18 {19 public UUID generate();20 21 public void create () throws Exception ;22 public void start () throws Exception ;23 public void stop () throws Exception ;24 public void destroy () throws Exception ;25 26 }27