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 ItfEntityManagerTester00 { 37 38 43 EBStore findEBStore(final int id); 44 45 49 void removeEBStore(final int id); 50 51 56 void createEBStoreNew(final int id, final String name); 57 58 64 void createEBStoreManaged(final int id, final String name); 65 66 71 void createEBStoreRemoved(final int id, final String name); 72 73 78 void removeEBStoreRemoved(final int id, final String name); 79 80 85 void removeEBStoreManaged(final int id, final String name); 86 87 92 void removeEBStoreNew(final int id, final String name); 93 94 } 95 | Popular Tags |