Package org.jboss.ejb.client
Class EJBMetaDataImpl
- java.lang.Object
-
- org.jboss.ejb.client.EJBMetaDataImpl
-
- All Implemented Interfaces:
EJBMetaData,Serializable
@Deprecated public final class EJBMetaDataImpl extends Object implements EJBMetaData, Serializable
Deprecated.Retained for compatibility with older protocol versions; use theAbstractEJBMetaDatahierarchy instead.An implementation of the EJBMetaData interface which allows a client to obtain the enterprise Bean's meta-data information.- Author:
- Stuart Douglas
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EJBMetaDataImpl(Class<?> remoteClass, Class<? extends EJBHome> homeClass, Class<?> pkClass, boolean session, boolean statelessSession, EJBHome home)Deprecated.EJBMetaDataImpl(AbstractEJBMetaData<?,?> ejbMetaData)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description EJBHomegetEJBHome()Deprecated.Obtains the home interface of the enterprise Bean.Class<? extends EJBHome>getHomeInterfaceClass()Deprecated.Obtains theClassobject for the enterprise Bean's home interface.Class<?>getPrimaryKeyClass()Deprecated.Obtains theClassobject for the enterprise Bean's primary key class.Class<?>getRemoteInterfaceClass()Deprecated.Obtains theClassobject for the enterprise Bean's remote interface.booleanisSession()Deprecated.Tests if the enterprise Bean's type is "session".booleanisStatelessSession()Deprecated.Tests if the enterprise Bean's type is "stateless session".AbstractEJBMetaData<?,?>toAbstractEJBMetaData()Deprecated.
-
-
-
Method Detail
-
toAbstractEJBMetaData
public AbstractEJBMetaData<?,?> toAbstractEJBMetaData()
Deprecated.
-
getEJBHome
public EJBHome getEJBHome()
Deprecated.Obtains the home interface of the enterprise Bean.- Specified by:
getEJBHomein interfaceEJBMetaData- Returns:
- the remote home interface of the enterprise bean.
-
getHomeInterfaceClass
public Class<? extends EJBHome> getHomeInterfaceClass()
Deprecated.Obtains theClassobject for the enterprise Bean's home interface.- Specified by:
getHomeInterfaceClassin interfaceEJBMetaData- Returns:
- the class object for the enterprise bean's remote home interface.
-
getRemoteInterfaceClass
public Class<?> getRemoteInterfaceClass()
Deprecated.Obtains theClassobject for the enterprise Bean's remote interface.- Specified by:
getRemoteInterfaceClassin interfaceEJBMetaData- Returns:
- the class object for the enterprise bean's remote interface.
-
getPrimaryKeyClass
public Class<?> getPrimaryKeyClass()
Deprecated.Obtains theClassobject for the enterprise Bean's primary key class.- Specified by:
getPrimaryKeyClassin interfaceEJBMetaData- Returns:
- the class object for the enterprise bean's primary key class.
-
isSession
public boolean isSession()
Deprecated.Tests if the enterprise Bean's type is "session".- Specified by:
isSessionin interfaceEJBMetaData- Returns:
- true if the type of the enterprise Bean is session bean.
-
isStatelessSession
public boolean isStatelessSession()
Deprecated.Tests if the enterprise Bean's type is "stateless session".- Specified by:
isStatelessSessionin interfaceEJBMetaData- Returns:
- true if the type of the enterprise Bean is stateless session.
-
-