1 7 package org.enhydra.pim.business; 8 9 import java.sql.SQLException ; 10 11 import com.lutris.appserver.server.sql.DatabaseManagerException; 12 13 18 public interface TransactionContextI { 19 20 public void beginContext(String database) throws DatabaseManagerException, SQLException ; 21 22 public void releaseContext(); 23 24 public void commitContext() throws SQLException ; 25 26 public void rollbackContext() throws SQLException ; 27 28 } | Popular Tags |