Interface EjbReferenceContainer
-
- All Known Subinterfaces:
EjbDescriptor,EjbMessageBeanDescriptor,EjbSessionDescriptor
- All Known Implementing Classes:
Application,ApplicationClientDescriptor,DummyEjbDescriptor,EjbBundleDescriptor,EjbBundleDescriptorImpl,EjbCMPEntityDescriptor,EjbDescriptor,EjbEntityDescriptor,EjbInterceptor,EjbMessageBeanDescriptor,EjbSessionDescriptor,IASEjbCMPEntityDescriptor,InterceptorDescriptor,JndiEnvironmentRefsGroupDescriptor,ManagedBeanDescriptor,WebBundleDescriptor,WebBundleDescriptorImpl,WebFragmentDescriptor
public interface EjbReferenceContainerThis interface defines the behaviour of a J2EE component containaing ejb references- Version:
- Author:
- Jerome Dochez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddEjbReferenceDescriptor(EjbReference ejbReference)Add a reference to an ejb.EjbReferencegetEjbReference(String name)Looks up an ejb reference with the given name.SetgetEjbReferenceDescriptors()Return the set of references to ejbs that I have.
-
-
-
Method Detail
-
addEjbReferenceDescriptor
void addEjbReferenceDescriptor(EjbReference ejbReference)
Add a reference to an ejb.- Parameters:
the- ejb reference
-
getEjbReference
EjbReference getEjbReference(String name)
Looks up an ejb reference with the given name. Throws an IllegalArgumentException if it is not found.- Parameters:
the- name of the ejb-reference
-
getEjbReferenceDescriptors
Set getEjbReferenceDescriptors()
Return the set of references to ejbs that I have.
-
-