1 25 26 package org.objectweb.jonas.jtests.beans.relation.cascade; 27 28 import java.util.Collection ; 29 30 import javax.ejb.CreateException ; 31 import javax.ejb.FinderException ; 32 33 public interface CustomerHL extends javax.ejb.EJBLocalHome { 34 CustomerL create(Integer id) throws CreateException ; 35 CustomerL findByPrimaryKey(Integer id) throws FinderException ; 36 Collection findAllCustomers() throws FinderException ; 37 Collection findByName(String lastName, String firstName) throws FinderException ; 38 39 } 40 | Popular Tags |