1 22 package org.jboss.test.perf.interfaces; 23 public interface Entity2Home extends javax.ejb.EJBHome { 24 25 Entity create(int key1, String key2, Double key3, int value) 26 throws java.rmi.RemoteException , javax.ejb.CreateException ; 27 28 Entity findByPrimaryKey(Entity2PK primaryKey) 29 throws java.rmi.RemoteException , javax.ejb.FinderException ; 30 31 java.util.Enumeration findInRange(int min, int max) 32 throws java.rmi.RemoteException , javax.ejb.FinderException ; 33 34 } 35 | Popular Tags |