1 25 26 package org.objectweb.easybeans.tests.common.ejbs.stateless.containermanaged.entitymanager; 27 28 import org.objectweb.easybeans.tests.common.ejbs.entity.ebstore.EBStore; 29 30 36 public interface ItfTransactionContextTester { 37 38 41 int ID = 1; 42 43 46 String NAME = "test"; 47 48 52 void createBeanRequiresNewWithClientTransaction(); 53 54 58 void createBeanRequiresNewWithoutClientTransaction(); 59 60 64 void createBeanRequired(); 65 66 70 void persistRequiresNew(final EBStore entity); 71 72 76 void persistRequired(final EBStore entity); 77 78 81 void deleteBean(); 82 83 } 84 | Popular Tags |