1 25 26 28 package org.objectweb.jonas.jtests.beans.ebasic; 29 30 import java.rmi.RemoteException ; 31 import java.util.Collection ; 32 33 import javax.ejb.CreateException ; 34 import javax.ejb.EJBHome ; 35 import javax.ejb.FinderException ; 36 37 public interface E4QueryHome extends EJBHome { 38 public E4Query create(String id, String s, int i, double d) throws RemoteException , CreateException ; 39 public E4Query findByPrimaryKey(String id) throws RemoteException , FinderException ; 40 public Collection findByLengthString(int l) 41 throws RemoteException , FinderException ; 42 public Collection findByLocateString(String s) 43 throws RemoteException , FinderException ; 44 public Collection findByLocateStringAt(String s, int start) 45 throws RemoteException , FinderException ; 46 public Collection findBySubstring(String s, int start, int length) 47 throws RemoteException , FinderException ; 48 public Collection findByConcatString(String s) 49 throws RemoteException , FinderException ; 50 public Collection findByAbsInt(int i) 51 throws RemoteException , FinderException ; 52 public Collection findBySqrtDouble(double d) 53 throws RemoteException , FinderException ; 54 public Collection findByIsNull() 55 throws RemoteException , FinderException ; 56 public Collection findByIsNullParam(String s) 57 throws RemoteException , FinderException ; 58 public Collection findByInStrings() 59 throws RemoteException , FinderException ; 60 public Collection findByLessThanMinus100() 61 throws RemoteException , FinderException ; 62 public Collection findByIntEqualExpr(int i1, int i2, int i3) 63 throws RemoteException , FinderException ; 64 public Collection findByStringGreaterThenExpr(String s) 65 throws RemoteException , FinderException ; 66 public Collection findByStringGreaterOrEqualThenExpr(String s) 67 throws RemoteException , FinderException ; 68 public Collection findByIntModXIsZero(int i) 69 throws RemoteException , FinderException ; 70 } 71 | Popular Tags |