All Packages Class Hierarchy This Package Previous Next Index
Interface javax.ejb.EJBMetaData
- public interface interface EJBMetaData
The EJBMetaData interface allows a client to obtain the enterprise bean's
meta-data. The meta-data is intended to for development tools used for
building applications that use deployed enterprise beans.
-
getEJBHome()
- Obtain the home interface of the enterprise bean.
-
getHomeInterfaceClass()
- Obtain the Class object for the EJB's home interface.
-
getPrimaryKeyClass()
- Obtain the Class object for the EJB's primary key class.
-
getRemoteInterfaceClass()
- Obtain the Class object for the EJB's remote interface.
-
isSession()
- Test if the enterprise bean's type is "session".
getEJBHome
public abstract EJBHome getEJBHome()
- Obtain the home interface of the enterprise bean.
getHomeInterfaceClass
public abstract Class getHomeInterfaceClass()
- Obtain the Class object for the EJB's home interface.
getRemoteInterfaceClass
public abstract Class getRemoteInterfaceClass()
- Obtain the Class object for the EJB's remote interface.
getPrimaryKeyClass
public abstract Class getPrimaryKeyClass()
- Obtain the Class object for the EJB's primary key class.
isSession
public abstract boolean isSession()
- Test if the enterprise bean's type is "session".
- Returns:
- True if the type of the enterprise bean is session.
All Packages Class Hierarchy This Package Previous Next Index