KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xpetstore > services > test > EJBTestServlet


1 /*
2  * Created on May 1, 2003
3  */

4 package xpetstore.services.test;
5
6 import org.junitee.servlet.JUnitEEServlet;
7
8 /**
9  * @author <a HREF="mailto:tchbansi@sourceforge.net">Herve Tchepannou</a>
10  *
11  * @web.servlet
12  * name="EJBTestServlet"
13  * display-name="Servlet for testing EJB"
14  * load-on-startup="1"
15  * @web.servlet-mapping
16  * url-pattern="/TestServlet/*"
17  * @ web.ejb-local-ref
18  * name="ejb/Petstore"
19  * type="Session"
20  * local="xpetstore.services.petstore.ejb.Petstore"
21  * link="Petstore"
22  * @ web.ejb-local-ref
23  * name="ejb/Cart"
24  * type="Session"
25  * home="xpetstore.services.cart.interfaces.CartLocalHome"
26  * local="xpetstore.services.cart.ejb.Cart"
27  * link="Cart"
28  */

29 public class EJBTestServlet extends JUnitEEServlet {
30
31 }
32
Popular Tags