blob: 5fbc611d056e8c77cdab7d4e7b7df63b75f02abe [file] [log] [blame]
package ejb;
import javax.ejb.CreateException;
import javax.ejb.EJBLocalHome;
/**
* This is the local-home interface for SessionTest2 enterprise bean.
*/
public interface SessionTest2LocalHome extends EJBLocalHome {
SessionTest2Local create() throws CreateException;
}