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.


Method Index

 o getEJBHome()
Obtain the home interface of the enterprise bean.
 o getHomeInterfaceClass()
Obtain the Class object for the EJB's home interface.
 o getPrimaryKeyClass()
Obtain the Class object for the EJB's primary key class.
 o getRemoteInterfaceClass()
Obtain the Class object for the EJB's remote interface.
 o isSession()
Test if the enterprise bean's type is "session".

Methods

 o getEJBHome
 public abstract EJBHome getEJBHome()
Obtain the home interface of the enterprise bean.

 o getHomeInterfaceClass
 public abstract Class getHomeInterfaceClass()
Obtain the Class object for the EJB's home interface.

 o getRemoteInterfaceClass
 public abstract Class getRemoteInterfaceClass()
Obtain the Class object for the EJB's remote interface.

 o getPrimaryKeyClass
 public abstract Class getPrimaryKeyClass()
Obtain the Class object for the EJB's primary key class.

 o 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