com.bankframe.services.route
Interface RouteHome

All Superinterfaces:
EJBHome, Remote

public interface RouteHome
extends EJBHome


Method Summary
 Route create(String requestId, String jndiName, String descripton, boolean isSessionManaged)
          All EJBs must implement a create method.
 Enumeration findAll()
          This method finds all EJBRoute instances.
 Route findByPrimaryKey(RoutePK primaryKey)
          See the javax.ejb.EJBHome Class for details.
 
Methods inherited from interface javax.ejb.EJBHome
getEJBMetaData, getHomeHandle, remove, remove
 

Method Detail

create

Route create(String requestId,
             String jndiName,
             String descripton,
             boolean isSessionManaged)
             throws RemoteException,
                    CreateException
All EJBs must implement a create method.

Parameters:
requestId - REQUEST_ID
jndiName - JNDI Name
descripton - Description
isSessionManaged - Route is session managed
Throws:
RemoteException - RemoteException
CreateException - CreateException

findAll

Enumeration findAll()
                    throws RemoteException,
                           FinderException
This method finds all EJBRoute instances.

Returns:
Enumeration of EJBRoute instances
Throws:
RemoteException - RemoteException
FinderException - FinderException

findByPrimaryKey

Route findByPrimaryKey(RoutePK primaryKey)
                       throws RemoteException,
                              FinderException
See the javax.ejb.EJBHome Class for details.

Parameters:
primaryKey - primary key in a database table
Throws:
RemoteException - RemoteException
FinderException - FinderException


Copyright © 2005, 2007, Oracle. All rights reserved.