com.bankframe.services.accesscontrol.ejb.groupmembers
Interface EJBGroupMemberHome

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

public interface EJBGroupMemberHome
extends javax.ejb.EJBHome

This interface is the Home interface for the EJBGroupPermissionBean

Author:
ETU

Method Summary
 EJBGroupMember create(java.lang.String userId, java.lang.String groupId)
          This method must be implemented by all EJBs.
 java.util.Enumeration findAll()
          This method retrieves an instance of each entry in the database table and returns these to the client as an enumeration.
 EJBGroupMember findByPrimaryKey(EJBGroupMemberPK primaryKey)
          This method retrieves an EJB that has the given primary key.
 
Methods inherited from interface javax.ejb.EJBHome
getEJBMetaData, getHomeHandle, remove, remove
 

Method Detail

create

public EJBGroupMember create(java.lang.String userId,
                             java.lang.String groupId)
                      throws java.rmi.RemoteException,
                             javax.ejb.CreateException
This method must be implemented by all EJBs. See the javax.ejb.EJBHome Class for details.

Parameters:
userId - create the EJB with this user id
groupId - create the EJB with this group id
Throws:
java.rmi.RemoteException
javax.ejb.CreateException

findAll

public java.util.Enumeration findAll()
                              throws java.rmi.RemoteException,
                                     javax.ejb.FinderException
This method retrieves an instance of each entry in the database table and returns these to the client as an enumeration.

Returns:
an enumeration of all instances of this bean in the database
Throws:
java.rmi.RemoteException
javax.ejb.FinderException

findByPrimaryKey

public EJBGroupMember findByPrimaryKey(EJBGroupMemberPK primaryKey)
                                throws java.rmi.RemoteException,
                                       javax.ejb.FinderException
This method retrieves an EJB that has the given primary key.

Parameters:
primaryKey - primary key in the 'EJBGROUP_MEMBERS' database table
Returns:
an EJB instance with the given key
Throws:
javax.ejb.FinderException
java.rmi.RemoteException


Copyright © 2004 Siebel Systems, Inc. All rights reserved.