1 2 package test;3 4 import javax.ejb.CreateException ;5 import javax.ejb.EJBLocalHome ;6 7 8 /**9 * This is the local-home interface for TestingSession enterprise bean.10 */11 public interface TestingSessionLocalHome extends EJBLocalHome {12 13 14 15 /**16 *17 */18 TestingSessionLocal create() throws CreateException ;19 20 21 }22