djencks 2004/07/18 18:32:25
Modified: modules/core/src/java/org/openejb/spi Assembler.java
Log:
Add timer support to session and mdbs. (entities still todo). Adapt to
TransactionContextManager. Adapt to deploying with external plan.
Revision Changes Path
1.2 +7 -7 openejb/modules/core/src/java/org/openejb/spi/Assembler.java
Index: Assembler.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/spi/Assembler.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Assembler.java 1 Mar 2004 07:14:43 -0000 1.1
+++ Assembler.java 18 Jul 2004 22:32:25 -0000 1.2
@@ -53,20 +53,20 @@
public interface Assembler {
public void init(Properties props)throws OpenEJBException;
-
+
public void build()throws OpenEJBException;
-
+
public ContainerSystem getContainerSystem();
-
+
/**
* Gets the <code>TransactionManager</code> that this container manager exposes
to the <code>Container</code>s it manages.
*
* @return the TransactionManager to be used by this container manager's
containers when servicing beans
* @see "javax.transaction.TransactionManager"
- * @see org.openejb.spi.TransactionService#getTransactionManager()
TransactionService.getTransactionManager()
+ * @see org.openejb.spi.TransactionService#getTransactionManager()
TransactionService.getTransactionContextManager()
*/
public TransactionManager getTransactionManager( );
-
+
/**
* Gets the <code>SecurityService</code> that this container manager exposes to
the <code>Container</code>s it manages.
*
@@ -74,5 +74,5 @@
* @see org.openejb.spi.SecurityService
*/
public SecurityService getSecurityService( );
-
+
}