1 25 26 package org.objectweb.easybeans.component.itf; 27 28 import javax.transaction.TransactionManager ; 29 30 import org.objectweb.easybeans.component.api.EZBComponent; 31 32 36 public interface TMComponent extends EZBComponent { 37 38 41 String JNDI_NAME = "javax.transaction.UserTransaction"; 42 43 44 48 TransactionManager getTransactionManager(); 49 50 54 void setTimeout(int timeout); 55 } 56 | Popular Tags |