oracle.toplink.ejb
Interface EJBHome


public interface EJBHome

Purpose: Provide a useful home class for TopLink perssited bean's homes to inherit from.

Description: This class declares useful finders such as find by query and expression.

Since:
TOPLink/Java 3.0

Method Summary
TypeMethod
 java.util.Enumeration findAll()
          PUBLIC: Read all the objects for the class.
 java.util.Enumeration findAll(Call call)
          PUBLIC: Read all the objects for the class given the call.
 java.util.Enumeration findAll(Expression expression)
          PUBLIC: Read all the objects for the class given the expression.
 java.util.Enumeration findAll(ReadAllQuery query)
          PUBLIC: Read all the objects for the class given the query.
 java.util.Enumeration findAllByNamedQuery(java.lang.String queryName, java.util.Vector arguments)
          PUBLIC: Read all the objects for the class given the named query.
 

Method Detail

findAll

public java.util.Enumeration findAll()
                              throws java.rmi.RemoteException,
                                     oracle.toplink.ejb.FinderException
PUBLIC: Read all the objects for the class.

findAll

public java.util.Enumeration findAll(Expression expression)
                              throws java.rmi.RemoteException,
                                     oracle.toplink.ejb.FinderException
PUBLIC: Read all the objects for the class given the expression.

findAll

public java.util.Enumeration findAll(Call call)
                              throws java.rmi.RemoteException,
                                     oracle.toplink.ejb.FinderException
PUBLIC: Read all the objects for the class given the call.

findAll

public java.util.Enumeration findAll(ReadAllQuery query)
                              throws java.rmi.RemoteException,
                                     oracle.toplink.ejb.FinderException
PUBLIC: Read all the objects for the class given the query.

findAllByNamedQuery

public java.util.Enumeration findAllByNamedQuery(java.lang.String queryName,
                                                 java.util.Vector arguments)
                                          throws java.rmi.RemoteException,
                                                 oracle.toplink.ejb.FinderException
PUBLIC: Read all the objects for the class given the named query.