| java.lang.Object org.jboss.proxy.ejb.EJBMetaDataImpl
EJBMetaDataImpl | public class EJBMetaDataImpl implements EJBMetaData,Serializable(Code) | | An implementation of the EJBMetaData interface which allows a
client to obtain the enterprise Bean's meta-data information.
author: Rickard Öberg (rickard.oberg@telkel.com) author: Marc Fleury author: Jason Dillon version: $Revision: 57209 $ |
Constructor Summary | |
public | EJBMetaDataImpl(Class remote, Class home, Class pkClass, boolean session, boolean statelessSession, HomeHandle homeHandle) Construct an EJBMetaDataImpl. |
EJBMetaDataImpl | public EJBMetaDataImpl(Class remote, Class home, Class pkClass, boolean session, boolean statelessSession, HomeHandle homeHandle)(Code) | | Construct an EJBMetaDataImpl.
this should only be accessible from the factory.
|
getEJBHome | public EJBHome getEJBHome()(Code) | | Obtain the home interface of the enterprise Bean.
throws: EJBException - Failed to get EJBHome object. |
getHomeInterfaceClass | public Class getHomeInterfaceClass()(Code) | | Obtain the Class object for the enterprise Bean's home interface.
|
getPrimaryKeyClass | public Class getPrimaryKeyClass()(Code) | | Obtain the Class object for the enterprise Bean's primary key class.
|
getRemoteInterfaceClass | public Class getRemoteInterfaceClass()(Code) | | Obtain the Class object for the enterprise Bean's remote interface.
|
isSession | public boolean isSession()(Code) | | Test if the enterprise Bean's type is "session".
True if the type of the enterprise Bean is session bean. |
isStatelessSession | public boolean isStatelessSession()(Code) | | Test if the enterprise Bean's type is "stateless session".
True if the type of the enterprise Bean is stateless session. |
|
|