| <?xml version="1.0" encoding="UTF-8"?> |
| <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN' 'http://java.sun.com/j2ee/dtds/web-app_2_2.dtd'> |
| <!-- |
| |
| Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved. |
| |
| This program and the accompanying materials are made available under the |
| terms of the Eclipse Public License v. 2.0, which is available at |
| http://www.eclipse.org/legal/epl-2.0. |
| |
| This Source Code may also be made available under the following Secondary |
| Licenses when the conditions for such availability set forth in the |
| Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| version 2 with the GNU Classpath Exception, which is available at |
| https://www.gnu.org/software/classpath/license.html. |
| |
| SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| |
| --> |
| |
| <web-app> |
| <display-name>subclassing</display-name> |
| <distributable></distributable> |
| <servlet> |
| <servlet-name>SimpleBankServlet</servlet-name> |
| <servlet-class>samples.ejb.subclassing.servlet.SimpleBankServlet</servlet-class> |
| <load-on-startup>0</load-on-startup> |
| </servlet> |
| <servlet-mapping> |
| <servlet-name>SimpleBankServlet</servlet-name> |
| <url-pattern>/servlet/SimpleBankServlet</url-pattern> |
| </servlet-mapping> |
| <login-config> |
| <auth-method>BASIC</auth-method> |
| <realm-name></realm-name> |
| <form-login-config> |
| <form-login-page></form-login-page> |
| <form-error-page></form-error-page> |
| </form-login-config> |
| </login-config> |
| <ejb-ref> |
| <ejb-ref-name>ejb/customerSavings</ejb-ref-name> |
| <ejb-ref-type>Entity</ejb-ref-type> |
| <home>samples.ejb.subclassing.ejb.CustomerSavingsHome</home> |
| <remote>samples.ejb.subclassing.ejb.CustomerSavings</remote> |
| <ejb-link>CustomerSavingsEJB</ejb-link> |
| </ejb-ref> |
| <ejb-ref> |
| <ejb-ref-name>ejb/customerChecking</ejb-ref-name> |
| <ejb-ref-type>Entity</ejb-ref-type> |
| <home>samples.ejb.subclassing.ejb.CustomerCheckingHome</home> |
| <remote>samples.ejb.subclassing.ejb.CustomerChecking</remote> |
| <ejb-link>CustomerCheckingEJB</ejb-link> |
| </ejb-ref> |
| </web-app> |
| |