KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > EntityBRemoteBusiness


1
2 package test;
3
4 import java.rmi.RemoteException JavaDoc;
5
6
7 /**
8  * This is the business interface for EntityB enterprise bean.
9  */

10 public interface EntityBRemoteBusiness {
11     public abstract String JavaDoc getKey() throws RemoteException JavaDoc;
12     
13 }
14
Popular Tags