1 25 package org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.ejb2view; 26 27 import javax.ejb.CreateException ; 28 import javax.ejb.EJBLocalHome ; 29 30 35 public interface SimpleEjb2LocalHome extends EJBLocalHome { 36 37 44 SimpleEjb2Local create(final int code) throws CreateException ; 45 46 53 SimpleEjb2Local create(final String name) throws CreateException ; 54 55 } 56 | Popular Tags |