01: package org.mockejb.test;
02:
03: import java.sql.SQLException;
04:
05: import javax.ejb.*;
06: import javax.naming.NamingException;
07:
08: /**
09: * Business interface of the helper bean.
10: * HelperBean uses local interface.
11: */
12: public interface SampleHelper extends EJBLocalObject {
13:
14: void insertData() throws NamingException, SQLException;
15:
16: String dummyMethod(String param);
17:
18: void throwSystemException();
19:
20: }
|