KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > jtests > beans > ejbql > AddressHomeLocal


1 package org.objectweb.jonas.jtests.beans.ejbql;
2
3 import java.util.Collection JavaDoc;
4
5 // Address EJB's local home interface
6
public interface AddressHomeLocal extends javax.ejb.EJBLocalHome JavaDoc {
7
8     public AddressLocal createAddress(String JavaDoc street, String JavaDoc city, String JavaDoc state, String JavaDoc zip )
9     throws javax.ejb.CreateException JavaDoc;
10
11     public AddressLocal findByPrimaryKey(Integer JavaDoc primaryKey)
12     throws javax.ejb.FinderException JavaDoc;
13
14     public Collection JavaDoc findAllAddress()
15     throws javax.ejb.FinderException JavaDoc;
16 }
17
Popular Tags