blob: 12b18bfc1e8a3633ce76e52b9da043a33b15d975 [file] [log] [blame]
tom8bb16062014-09-12 14:47:46 -07001<?xml version="1.0" encoding="UTF-8"?>
2<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee"
3 xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
4 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
5 id="ONOS" version="2.5">
6 <display-name>ONOS GUI</display-name>
7
8 <welcome-file-list>
9 <welcome-file>index.html</welcome-file>
10 </welcome-file-list>
11
12 <servlet>
13 <servlet-name>JAX-RS Service</servlet-name>
14 <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
15 <init-param>
16 <param-name>com.sun.jersey.config.property.packages</param-name>
tom4009d2c2014-09-12 15:53:42 -070017 <param-value>org.onlab.onos.tvue</param-value>
tom8bb16062014-09-12 14:47:46 -070018 </init-param>
tom82d6bde2014-09-23 17:33:58 -070019 <load-on-startup>10</load-on-startup>
tom8bb16062014-09-12 14:47:46 -070020 </servlet>
21
22 <servlet-mapping>
23 <servlet-name>JAX-RS Service</servlet-name>
24 <url-pattern>/rs/*</url-pattern>
25 </servlet-mapping>
26
27</web-app>