blob: ef6a50ae2bbf49bdcf9a9aca6ba8ca5a7589eb89 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -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 -->
tom0eb04ca2014-08-25 14:34:51 -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>
35 <param-value>org.onlab.onos.gui</param-value>
36 </init-param>
37 <load-on-startup>1</load-on-startup>
38 </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>