KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > example > cmp > many2one > HouseHome


1 package example.cmp.many2one;
2
3 import java.rmi.*;
4 import javax.ejb.*;
5
6 /**
7  * Remote interface for the house home.
8  */

9 public interface HouseHome extends EJBLocalHome {
10   /**
11    * Returns the named house.
12    */

13   House findByPrimaryKey(String name) throws FinderException;
14 }
15
Popular Tags