| java.lang.Object org.jboss.proxy.ejb.EJBMetaDataImplIIOP
EJBMetaDataImplIIOP | public class EJBMetaDataImplIIOP 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 author: Francisco Reverbel version: $Revision: 57194 $ |
Constructor Summary | |
public | EJBMetaDataImplIIOP(Class remoteClass, Class homeClass, Class pkClass, boolean session, boolean statelessSession, EJBHome home) Constructs an EJBMetaDataImplIIOP . |
Method Summary | |
public EJBHome | getEJBHome() Obtains the home interface of the enterprise Bean. | public Class | getHomeInterfaceClass() Obtains the Class object for the enterprise Bean's home
interface. | public Class | getPrimaryKeyClass() Obtains the Class object for the enterprise Bean's primary
key class. | public Class | getRemoteInterfaceClass() Obtains the Class object for the enterprise Bean's remote
interface. | public boolean | isSession() Tests if the enterprise Bean's type is "session". | public boolean | isStatelessSession() Tests if the enterprise Bean's type is "stateless session". |
serialVersionUID | final static long serialVersionUID(Code) | | |
EJBMetaDataImplIIOP | public EJBMetaDataImplIIOP(Class remoteClass, Class homeClass, Class pkClass, boolean session, boolean statelessSession, EJBHome home)(Code) | | Constructs an EJBMetaDataImplIIOP .
|
getEJBHome | public EJBHome getEJBHome()(Code) | | Obtains the home interface of the enterprise Bean.
|
getHomeInterfaceClass | public Class getHomeInterfaceClass()(Code) | | Obtains the Class object for the enterprise Bean's home
interface.
|
getPrimaryKeyClass | public Class getPrimaryKeyClass()(Code) | | Obtains the Class object for the enterprise Bean's primary
key class.
|
getRemoteInterfaceClass | public Class getRemoteInterfaceClass()(Code) | | Obtains the Class object for the enterprise Bean's remote
interface.
|
isSession | public boolean isSession()(Code) | | Tests if the enterprise Bean's type is "session".
true if the type of the enterprise Bean is session bean. |
isStatelessSession | public boolean isStatelessSession()(Code) | | Tests if the enterprise Bean's type is "stateless session".
true if the type of the enterprise Bean is stateless session. |
|
|