blob: 38039804e1ab28738cfb062e2fac6bcb03bbae69 [file] [log] [blame]
tom8bb16062014-09-12 14:47:46 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska781d18b2014-10-27 10:31:25 -07002<!--
3 ~ Licensed to the Apache Software Foundation (ASF) under one
4 ~ or more contributor license agreements. See the NOTICE file
5 ~ distributed with this work for additional information
6 ~ regarding copyright ownership. The ASF licenses this file
7 ~ to you under the Apache License, Version 2.0 (the
8 ~ "License"); you may not use this file except in compliance
9 ~ with the License. You may obtain a copy of the License at
10 ~
11 ~ http://www.apache.org/licenses/LICENSE-2.0
12 ~
13 ~ Unless required by applicable law or agreed to in writing,
14 ~ software distributed under the License is distributed on an
15 ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ~ KIND, either express or implied. See the License for the
17 ~ specific language governing permissions and limitations
18 ~ under the License.
19 -->
tom8bb16062014-09-12 14:47:46 -070020<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee"
21 xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
22 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
23 id="ONOS" version="2.5">
24 <display-name>ONOS GUI</display-name>
25
26 <welcome-file-list>
27 <welcome-file>index.html</welcome-file>
28 </welcome-file-list>
29
30 <servlet>
31 <servlet-name>JAX-RS Service</servlet-name>
32 <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
33 <init-param>
34 <param-name>com.sun.jersey.config.property.packages</param-name>
tom4009d2c2014-09-12 15:53:42 -070035 <param-value>org.onlab.onos.tvue</param-value>
tom8bb16062014-09-12 14:47:46 -070036 </init-param>
tom82d6bde2014-09-23 17:33:58 -070037 <load-on-startup>10</load-on-startup>
tom8bb16062014-09-12 14:47:46 -070038 </servlet>
39
40 <servlet-mapping>
41 <servlet-name>JAX-RS Service</servlet-name>
42 <url-pattern>/rs/*</url-pattern>
43 </servlet-mapping>
44
45</web-app>