cid#1607171 Data race condition
[LibreOffice.git] / odk / examples / java / ConverterServlet / web.xml
bloba0f36c7b265a509ccb14ca023f79097fd54fb30a
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <!--
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 -->
20 <!DOCTYPE web-app
21     PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
22     "http://java.sun.com/dtd/web-app_2_3.dtd">
24 <web-app>
25     <display-name>Conversion</display-name>
26     <description>
27       Converter servlet demo of the SDK.
28     </description>
30     <servlet>
31         <servlet-name>ConverterServlet</servlet-name>
32         <servlet-class>ConverterServlet</servlet-class>
33     </servlet>
35     <servlet-mapping>
36         <servlet-name>ConverterServlet</servlet-name>
37         <url-pattern>/servlet/*</url-pattern>
38     </servlet-mapping>
40 </web-app>