1 29 30 package com.caucho.ejb.cfg; 31 32 import com.caucho.bytecode.JMethod; 33 import com.caucho.ejb.gen.BeanAssembler; 34 import com.caucho.ejb.gen.StatelessCreateMethod; 35 import com.caucho.java.gen.BaseMethod; 36 import com.caucho.util.L10N; 37 38 41 public class EjbStatelessCreateMethod extends EjbMethod { 42 private static final L10N L = new L10N(EjbStatelessCreateMethod.class); 43 44 51 public EjbStatelessCreateMethod(EjbView view, 52 JMethod apiMethod) 53 { 54 super(view, apiMethod, null); 55 } 56 57 60 public BaseMethod assemble(BeanAssembler assembler, String fullClassName) 61 { 62 return new StatelessCreateMethod(getApiMethod(), 63 fullClassName, 64 getViewPrefix()); 65 } 66 } 67 | Popular Tags |