1 package org.objectweb.jonas.jtests.beans.ejbql; 2 3 import java.rmi.RemoteException ; 4 import java.util.Collection ; 5 6 7 public interface AddressHomeRemote extends javax.ejb.EJBHome { 9 10 public AddressRemote createAddress(String street, String city, String state, String zip ) 11 throws javax.ejb.CreateException , RemoteException ; 12 13 public AddressRemote findByPrimaryKey(Integer primaryKey) 14 throws javax.ejb.FinderException , RemoteException ; 15 16 public AddressRemote findQuery300626() 17 throws javax.ejb.FinderException , RemoteException ; 18 19 20 public Collection findAllAddress() 21 throws javax.ejb.FinderException , RemoteException ; 22 23 public long getCountOfCities() throws javax.ejb.FinderException , RemoteException ; 24 25 public long getCountOfDistinctCities() throws javax.ejb.FinderException , RemoteException ; 26 27 public Collection getAllCities() 28 throws javax.ejb.FinderException , RemoteException ; 29 public Collection getAllCreditCompanies() 30 throws javax.ejb.FinderException , RemoteException ; 31 public Collection getAllCreditCompanyNames() 32 throws javax.ejb.FinderException , RemoteException ; 33 public Collection getAllCreditCompanyIds() 34 throws javax.ejb.FinderException , RemoteException ; 35 public Collection getAllCreditCompanyNums() 36 throws javax.ejb.FinderException , RemoteException ; 37 38 } 39 40 | Popular Tags |