| java.lang.Object org.objectweb.jonas_ejb.svc.JMetaData
JMetaData | public class JMetaData implements EJBMetaData,Serializable(Code) | | This class is a Serializable class that allows a client to obtain the
enterprise Bean's meta-data information.
author: Philippe Coq |
Constructor Summary | |
public | JMetaData(EJBHome home, Class homeClass, Class remoteClass, boolean isSession, boolean isStatelessSession, Class primaryKeyClass) |
JMetaData | public JMetaData(EJBHome home, Class homeClass, Class remoteClass, boolean isSession, boolean isStatelessSession, Class primaryKeyClass)(Code) | | Constructor
Parameters: home - The EJBHome Parameters: homeClass - EJB Home class Parameters: remoteClass - EJB Remote class Parameters: isSession - true if is a Session Bean Parameters: isStatelessSession - true if is a StatelessSessionBean Parameters: primaryKeyClass - primary key class |
getEJBHome | public EJBHome getEJBHome()(Code) | | the home interface of the enterprise Bean. |
getHomeInterfaceClass | public Class getHomeInterfaceClass()(Code) | | the Class object for the enterprise Bean's home interface. |
getPrimaryKeyClass | public Class getPrimaryKeyClass()(Code) | | the Class object for the enterprise Bean's primary key class. |
getRemoteInterfaceClass | public Class getRemoteInterfaceClass()(Code) | | the Class object for the enterprise Bean's remote interface. |
isSession | public boolean isSession()(Code) | | True if the enterprise Bean's type is "session". |
isStatelessSession | public boolean isStatelessSession()(Code) | | True if the type of the enterprise Bean is stateless session. |
|
|