01: package org.mockejb.test;
02:
03: import javax.ejb.EJBObject;
04: import java.rmi.RemoteException;
05:
06: /**
07: * Business interface of a sample stateful bean.
08: */
09: public interface SampleStatefulService extends EJBObject {
10:
11: public final static String JNDI_NAME = "mockejb/SampleStatefulService";
12:
13: String getSampleState() throws RemoteException;
14:
15: }
|