JBoss EJB client 1.0.3.Final

org.jboss.ejb.client
Class EJBMetaDataImpl

java.lang.Object
  extended by org.jboss.ejb.client.EJBMetaDataImpl
All Implemented Interfaces:
Serializable, javax.ejb.EJBMetaData

public class EJBMetaDataImpl
extends Object
implements javax.ejb.EJBMetaData, Serializable

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
EJBMetaDataImpl(Class remoteClass, Class homeClass, Class pkClass, boolean session, boolean statelessSession, javax.ejb.EJBHome home)
           
 
Method Summary
 javax.ejb.EJBHome getEJBHome()
          Obtains the home interface of the enterprise Bean.
 Class getHomeInterfaceClass()
          Obtains the Class object for the enterprise Bean's home interface.
 Class getPrimaryKeyClass()
          Obtains the Class object for the enterprise Bean's primary key class.
 Class getRemoteInterfaceClass()
          Obtains the Class object for the enterprise Bean's remote interface.
 boolean isSession()
          Tests if the enterprise Bean's type is "session".
 boolean isStatelessSession()
          Tests if the enterprise Bean's type is "stateless session".
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EJBMetaDataImpl

public EJBMetaDataImpl(Class remoteClass,
                       Class homeClass,
                       Class pkClass,
                       boolean session,
                       boolean statelessSession,
                       javax.ejb.EJBHome home)
Method Detail

getEJBHome

public javax.ejb.EJBHome getEJBHome()
Obtains the home interface of the enterprise Bean.

Specified by:
getEJBHome in interface javax.ejb.EJBMetaData

getHomeInterfaceClass

public Class getHomeInterfaceClass()
Obtains the Class object for the enterprise Bean's home interface.

Specified by:
getHomeInterfaceClass in interface javax.ejb.EJBMetaData

getRemoteInterfaceClass

public Class getRemoteInterfaceClass()
Obtains the Class object for the enterprise Bean's remote interface.

Specified by:
getRemoteInterfaceClass in interface javax.ejb.EJBMetaData

getPrimaryKeyClass

public Class getPrimaryKeyClass()
Obtains the Class object for the enterprise Bean's primary key class.

Specified by:
getPrimaryKeyClass in interface javax.ejb.EJBMetaData

isSession

public boolean isSession()
Tests if the enterprise Bean's type is "session".

Specified by:
isSession in interface javax.ejb.EJBMetaData
Returns:
true if the type of the enterprise Bean is session bean.

isStatelessSession

public boolean isStatelessSession()
Tests if the enterprise Bean's type is "stateless session".

Specified by:
isStatelessSession in interface javax.ejb.EJBMetaData
Returns:
true if the type of the enterprise Bean is stateless session.

JBoss EJB client 1.0.3.Final

Copyright © 2012 JBoss by Red Hat. All Rights Reserved.