FileDocCategorySizeDatePackage
LocalCustomerHome.javaAPI DocExample308Mon Nov 24 21:50:56 GMT 2003com.oreilly.patterns.chapter9

LocalCustomerHome.java

package com.oreilly.patterns.chapter9;

import javax.ejb.*;


public interface LocalCustomerHome extends EJBLocalHome {
    
    public LocalCustomer findByPrimaryKey(CustomerKey aKey)
    throws FinderException;
    
    public LocalCustomer findByCustomerId(int customerId) 
    throws FinderException;
}