1 18 package org.ofbiz.entity.transaction; 19 20 import javax.transaction.*; 21 import java.sql.*; 22 23 import org.ofbiz.entity.*; 24 25 32 public interface TransactionFactoryInterface { 33 34 public TransactionManager getTransactionManager(); 35 36 public UserTransaction getUserTransaction(); 37 38 public String getTxMgrName(); 39 40 public Connection getConnection(String helperName) throws SQLException, GenericEntityException; 41 42 public void shutdown(); 43 } 44 | Popular Tags |