1 25 package org.objectweb.easybeans.tests.common.ejbs.base.transaction; 26 27 import javax.naming.NamingException ; 28 29 import org.objectweb.easybeans.tests.common.exception.TransactionException; 30 31 38 public class ContainerTransactionDefault extends ContainerTransaction { 39 40 46 @Override  47 public void insertCorrectTableInBothDB(final String db1, final String db2) throws Exception { 48 super.insertCorrectTableInBothDB(db1, db2); 49 } 50 51 58 @Override  59 public void insertCorrectFirstErrorSecond(final String db1, final String db2) throws Exception { 60 super.insertCorrectFirstErrorSecond(db1, db2); 61 } 62 63 68 @Override  69 public boolean getRollbackOnly() throws TransactionException { 70 return super.getRollbackOnly(); 71 } 72 73 79 @Override  80 public void setRollbackOnly(final String dbName1, final String dbName2) throws Exception , 81 NamingException { 82 super.setRollbackOnly(dbName1, dbName2); 83 } 84 85 91 @Override  92 public void insertTablesUsingAuxBeanReq(final String db1, final String db2) throws Exception { 93 super.insertTablesUsingAuxBeanReq(db1, db2); 94 } 95 96 102 @Override  103 public void insertTablesUsingAuxBeanNotSup(final String db1, final String db2) throws Exception { 104 super.insertTablesUsingAuxBeanNotSup(db1, db2); 105 } 106 107 111 @Override  112 public void getUserTransactionWithLookup() throws Exception { 113 super.getUserTransactionWithLookup(); 114 } 115 116 120 @Override  121 public void getUserTransactionWithEJBContext() throws Exception { 122 super.getUserTransactionWithEJBContext(); 123 } 124 } 125 | Popular Tags |