Package org.jboss.weld.ejb.spi.helpers
Class ForwardingEjbDescriptor<T>
- java.lang.Object
-
- org.jboss.weld.ejb.spi.helpers.ForwardingEjbDescriptor<T>
-
- All Implemented Interfaces:
EjbDescriptor<T>
public abstract class ForwardingEjbDescriptor<T> extends Object implements EjbDescriptor<T>
An implementation ofEjbDescriptorwhich forwards all its method calls to anotherEjbDescriptor. Subclasses should override one or more methods to modify the behavior of the backingEjbDescriptoras desired per the decorator pattern.- Author:
- Pete Muir
-
-
Constructor Summary
Constructors Constructor Description ForwardingEjbDescriptor()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract EjbDescriptor<T>delegate()booleanequals(Object obj)Class<T>getBeanClass()Gets the EJB typeStringgetEjbName()Get the EJB nameCollection<BusinessInterfaceDescriptor<?>>getLocalBusinessInterfaces()Gets the local business interfaces of the EJBCollection<BusinessInterfaceDescriptor<?>>getRemoteBusinessInterfaces()Gets the remote business interfaces of the EJBCollection<Method>getRemoveMethods()Get the remove methods of the EJBinthashCode()booleanisMessageDriven()Indicates if the EJB is an MDBbooleanisPassivationCapable()Indicates if the EJB is passivation capable.booleanisSingleton()Indicates if the bean is a EJB 3.1 Singleton session beanbooleanisStateful()Indicates if the EJB is a stateful session beanbooleanisStateless()Indicates if the bean is a stateless session beanStringtoString()
-
-
-
Method Detail
-
delegate
protected abstract EjbDescriptor<T> delegate()
-
getLocalBusinessInterfaces
public Collection<BusinessInterfaceDescriptor<?>> getLocalBusinessInterfaces()
Description copied from interface:EjbDescriptorGets the local business interfaces of the EJB- Specified by:
getLocalBusinessInterfacesin interfaceEjbDescriptor<T>- Returns:
- An iterator over the local business interfaces
-
getRemoteBusinessInterfaces
public Collection<BusinessInterfaceDescriptor<?>> getRemoteBusinessInterfaces()
Description copied from interface:EjbDescriptorGets the remote business interfaces of the EJB- Specified by:
getRemoteBusinessInterfacesin interfaceEjbDescriptor<T>- Returns:
- An iterator over the remote business interfaces
-
getRemoveMethods
public Collection<Method> getRemoveMethods()
Description copied from interface:EjbDescriptorGet the remove methods of the EJB- Specified by:
getRemoveMethodsin interfaceEjbDescriptor<T>- Returns:
- An iterator over the remove methods
-
getBeanClass
public Class<T> getBeanClass()
Description copied from interface:EjbDescriptorGets the EJB type- Specified by:
getBeanClassin interfaceEjbDescriptor<T>- Returns:
- The EJB Bean class
-
getEjbName
public String getEjbName()
Description copied from interface:EjbDescriptorGet the EJB name- Specified by:
getEjbNamein interfaceEjbDescriptor<T>- Returns:
- the EJB name
-
isMessageDriven
public boolean isMessageDriven()
Description copied from interface:EjbDescriptorIndicates if the EJB is an MDB- Specified by:
isMessageDrivenin interfaceEjbDescriptor<T>- Returns:
- True if the bean is an MDB, false otherwise
-
isSingleton
public boolean isSingleton()
Description copied from interface:EjbDescriptorIndicates if the bean is a EJB 3.1 Singleton session bean- Specified by:
isSingletonin interfaceEjbDescriptor<T>- Returns:
- True if the bean is a singleton, false otherwise
-
isStateful
public boolean isStateful()
Description copied from interface:EjbDescriptorIndicates if the EJB is a stateful session bean- Specified by:
isStatefulin interfaceEjbDescriptor<T>- Returns:
- True if the bean is stateful, false otherwise
-
isStateless
public boolean isStateless()
Description copied from interface:EjbDescriptorIndicates if the bean is a stateless session bean- Specified by:
isStatelessin interfaceEjbDescriptor<T>- Returns:
- True if stateless, false otherwise
-
isPassivationCapable
public boolean isPassivationCapable()
Description copied from interface:EjbDescriptorIndicates if the EJB is passivation capable.
- Stateless session beans, singleton session beans and MDBs are not passivation capable.
- A stateful session bean is passivation capable unless the
passivationCapableelement of theStatefulannotation is set to false or thepassivation-capableelement of the session deployment descriptor element is set to false
- Specified by:
isPassivationCapablein interfaceEjbDescriptor<T>- Returns:
- true if the EJB is passivation capable
-
-