FileDocCategorySizeDatePackage
AddressHomeLocal.javaAPI DocExample499Tue Nov 13 22:55:48 GMT 2001com.titan.customer

AddressHomeLocal.java

package com.titan.customer;

import javax.ejb.CreateException;
import javax.ejb.FinderException;

// Address EJB's local home interface
public interface AddressHomeLocal extends javax.ejb.EJBLocalHome {  

  public AddressLocal createAddress(Integer addressID,String street, String city, 
									String state,  String zip )
                      throws javax.ejb.CreateException;

  public AddressLocal findByPrimaryKey(Integer primaryKey)
  throws javax.ejb.FinderException;


}