1 45 package org.openejb.test.beans; 46 47 48 public interface EmployeeHome extends javax.ejb.EJBHome { 49 50 public Employee create(String lastname, String firstName) 51 throws javax.ejb.CreateException , java.rmi.RemoteException ; 52 53 public int sum(int one, int two) throws java.rmi.RemoteException ; 54 55 public java.util.Collection findAll( ) 56 throws javax.ejb.FinderException , java.rmi.RemoteException ; 57 58 public Employee findByPrimaryKey(Integer primkey) 59 throws javax.ejb.FinderException , java.rmi.RemoteException ; 60 } | Popular Tags |