FileDocCategorySizeDatePackage
CustomerHomeLocal.javaAPI DocExample351Mon Mar 11 22:53:12 GMT 2002com.titan.customer

CustomerHomeLocal.java

package com.titan.customer;

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

public interface CustomerHomeLocal extends javax.ejb.EJBLocalHome 
{
    public CustomerLocal create(Integer id)
        throws CreateException;
    
    public CustomerLocal findByPrimaryKey(Integer id)
        throws FinderException;
}