1 2 package test;3 4 5 /**6 * This is the business interface for TestingEntity enterprise bean.7 */8 public interface TestingEntityLocalBusiness {9 public abstract String getKey();10 11 String testBusinessMethod1();12 13 String testBusinessMethod2(String a, boolean b) throws Exception ;14 15 }16