1 25 package org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.transaction; 26 27 import java.sql.SQLException ; 28 29 import javax.naming.NamingException ; 30 31 37 public interface ItfSessionSync { 38 39 42 String TABLE = "SFSBSEssionSync"; 43 44 50 void insertTableRequired()throws SQLException , NamingException ; 51 52 58 void insertTableMandatory()throws SQLException , NamingException ; 59 60 66 void insertTableRequiredNew()throws SQLException , NamingException ; 67 68 74 void insertTableSupports()throws SQLException , NamingException ; 75 76 82 void insertTableNotSupported() throws SQLException , NamingException ; 83 84 90 void insertTableNever() throws SQLException , NamingException ; 91 92 97 void startup(final String dbName1, final String dbName2); 98 99 103 boolean isRolledback(); 104 } 105 | Popular Tags |