01: package org.objectweb.jonas.jtests.beans.ejbql;
02:
03: import java.util.Collection;
04:
05: // Address EJB's local home interface
06: public interface AddressHomeLocal extends javax.ejb.EJBLocalHome {
07:
08: public AddressLocal createAddress(String street, String city,
09: String state, String zip) throws javax.ejb.CreateException;
10:
11: public AddressLocal findByPrimaryKey(Integer primaryKey)
12: throws javax.ejb.FinderException;
13:
14: public Collection findAllAddress() throws javax.ejb.FinderException;
15: }
|