example.cmp.select
Interface HouseHome

All Superinterfaces:
javax.ejb.EJBLocalHome

public interface HouseHome
extends javax.ejb.EJBLocalHome

Home interface for the House bean.


Method Summary
 java.util.Collection findAll()
          Returns all the houses in the database.
 House findByPrimaryKey(java.lang.String name)
          returns the House that has name as its primary key.
 
Methods inherited from interface javax.ejb.EJBLocalHome
remove
 

Method Detail

findByPrimaryKey

public House findByPrimaryKey(java.lang.String name)
                       throws javax.ejb.FinderException
returns the House that has name as its primary key.
Parameters:
name - name of the House we want to find.

findAll

public java.util.Collection findAll()
                             throws javax.ejb.FinderException
Returns all the houses in the database.
Returns:
a collection of House beans.