01: /*
02: * JBoss, the OpenSource J2EE webOS
03: *
04: * Distributable under LGPL license.
05: * See terms of license at gnu.org.
06: */
07: package org.jboss.ejb3.test.servicedependency;
08:
09: import java.util.UUID;
10:
11: /**
12: * A UUID.
13: *
14: * @author <a href="galder.zamarreno@jboss.com">Galder Zamarreno</a>
15: * @version $Revision: 60233 $
16: */
17: public interface UniqueIdMBean {
18: public UUID generate();
19:
20: public void create() throws Exception;
21:
22: public void start() throws Exception;
23:
24: public void stop() throws Exception;
25:
26: public void destroy() throws Exception;
27:
28: }
|