1 25 26 package org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.xmldescriptor; 27 28 import javax.ejb.TransactionAttribute ; 29 import javax.ejb.TransactionAttributeType ; 30 31 38 public interface ItfTransAttributeDefinition { 39 40 47 void insertTableCorrect(final String dbName, final String tableName) throws Exception ; 48 49 56 void insertTableError(final String dbName, final String tableName) throws Exception ; 57 58 65 @TransactionAttribute (TransactionAttributeType.MANDATORY) 66 void insertTableCorrectMandatory(final String dbName, final String tableName) throws Exception ; 67 68 75 @TransactionAttribute (TransactionAttributeType.MANDATORY) 76 void insertTableErrorMandatory(final String dbName, final String tableName) throws Exception ; 77 78 } 79 | Popular Tags |