Oracle Fusion Middleware Java API Reference for Oracle TopLink
11g Release 1 (11.1.1)

B32476-03

oracle.toplink.ejb
Interface EJBHome

All Superinterfaces:
javax.ejb.EJBHome, java.rmi.Remote

public interface EJBHome
extends javax.ejb.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
 java.util.Enumeration findAll()
          Read all the objects for the class.
 java.util.Enumeration findAll(Call call)
          Read all the objects for the class given the call.
 java.util.Enumeration findAll(Expression expression)
          Read all the objects for the class given the expression.
 java.util.Enumeration findAll(ReadAllQuery query)
          Read all the objects for the class given the query.
 java.util.Enumeration findAllByNamedQuery(java.lang.String queryName, java.util.Vector arguments)
          Read all the objects for the class given the named query.
 
Methods inherited from interface javax.ejb.EJBHome
getEJBMetaData, getHomeHandle, remove, remove
 

Method Detail

findAll

java.util.Enumeration findAll()
                              throws java.rmi.RemoteException,
                                     javax.ejb.FinderException
Read all the objects for the class.

Throws:
java.rmi.RemoteException
javax.ejb.FinderException

findAll

java.util.Enumeration findAll(Expression expression)
                              throws java.rmi.RemoteException,
                                     javax.ejb.FinderException
Read all the objects for the class given the expression.

Throws:
java.rmi.RemoteException
javax.ejb.FinderException

findAll

java.util.Enumeration findAll(Call call)
                              throws java.rmi.RemoteException,
                                     javax.ejb.FinderException
Read all the objects for the class given the call.

Throws:
java.rmi.RemoteException
javax.ejb.FinderException

findAll

java.util.Enumeration findAll(ReadAllQuery query)
                              throws java.rmi.RemoteException,
                                     javax.ejb.FinderException
Read all the objects for the class given the query.

Throws:
java.rmi.RemoteException
javax.ejb.FinderException

findAllByNamedQuery

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

Throws:
java.rmi.RemoteException
javax.ejb.FinderException

Copyright © 1998, 2010, Oracle. All Rights Reserved.