1 25 package org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.lifecallback; 26 27 import static org.objectweb.easybeans.tests.common.ejbs.entity.callbacklogger.CallbackType.PRE_DESTROY; 28 29 import javax.annotation.PreDestroy; 30 import javax.ejb.Remove ; 31 32 import org.objectweb.easybeans.tests.common.ejbs.base.ItfCheck02; 33 import org.objectweb.easybeans.tests.common.ejbs.stateless.containermanaged.callbacklogger.BaseInsertCallbackEvent; 34 35 36 42 public class BasePreDestroyAllOrder00 extends BaseInsertCallbackEvent implements ItfCheck02{ 43 44 48 public void check() throws Exception { 49 } 50 51 54 @Remove 55 public void remove() { 56 } 57 58 61 @PreDestroy 62 public void preDestroy() { 63 super.log(SFSBPreDestroyAllOrder.class, PRE_DESTROY, BasePreDestroyAllOrder00.class); 64 } 65 } 66 | Popular Tags |