example.cmp.one2many
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 a Collection of all Houses managed by the container.
 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 a Collection of all Houses managed by the container.