1 29 30 package com.caucho.ejb.gen; 31 32 import com.caucho.bytecode.JMethod; 33 import com.caucho.ejb.cfg.EjbEntityBean; 34 import com.caucho.util.L10N; 35 36 39 public class AmberCreateMethod extends EntityCreateMethod { 40 private static final L10N L = new L10N(AmberCreateMethod.class); 41 42 public AmberCreateMethod(EjbEntityBean bean, 43 JMethod apiMethod, 44 JMethod beanCreateMethod, 45 JMethod beanPostCreateMethod, 46 String contextClassName) 47 { 48 super(bean, apiMethod, beanCreateMethod, beanPostCreateMethod, 49 contextClassName); 50 51 EntityCreateCall call = (EntityCreateCall) getCall(); 52 53 call.setCMP(true); 54 } 55 } 56 | Popular Tags |