Java Servlet Programming (Java Series)
Java Servlet Programming, 2nd Edition > C. Deployment Descriptor DTD Reference > <ejb-ref-type> |
Synopsis
<!ELEMENT ejb-ref-type (#PCDATA)> Description
The <ejb-ref-type> element contains the bean type. Its value must be either Entity or Session.[A] [A] The original comment for this tag erroneously declares that the tag "contains the expected Java class type of the referenced EJB." <ejb-ref> <description>Cruise ship cabin</description> <ejb-ref-name>ejb/CabinHome</ejb-ref-name> <ejb-ref-type>Entity</ejb-ref-type> <home>com.titan.cabin.CabinHome</home> <remote>com.titan.cabin.Cabin</remote> </ejb-ref>
|