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.POST_CONSTRUCT; 28 29 import javax.annotation.PostConstruct; 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 BasePostConstructAllOrder00 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 @PostConstruct 62 public void postConstruct() { 63 super.log(SFSBPostConstructAllOrder.class, POST_CONSTRUCT, BasePostConstructAllOrder00.class); 64 } 65 } 66 | Popular Tags |