blob: ba7e65f451f23dd5e917b1a5e79582a549b13a92 [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<!--
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 ~ Copyright 2014 Open Networking Laboratory
Thomas Vachuska781d18b2014-10-27 10:31:25 -07004 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07005 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
Thomas Vachuska781d18b2014-10-27 10:31:25 -07008 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07009 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
Thomas Vachuska781d18b2014-10-27 10:31:25 -070016 -->
tom0eb04ca2014-08-25 14:34:51 -070017<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee"
18 xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
19 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
20 id="ONOS" version="2.5">
21 <display-name>ONOS REST API v1.0</display-name>
22
Thomas Vachuska93da11f2015-02-22 11:09:10 -080023 <!--
24 <security-constraint>
25 <display-name>authenticated</display-name>
26 <web-resource-collection>
27 <web-resource-name>All files</web-resource-name>
28 <description/>
29 <url-pattern>/*</url-pattern>
30 </web-resource-collection>
31 <auth-constraint>
32 <description/>
33 <role-name>admin</role-name>
34 </auth-constraint>
35 </security-constraint>
36
37 <login-config>
38 <auth-method>BASIC</auth-method>
39 <realm-name>karaf</realm-name>
40 </login-config>
41
42 <security-role>
43 <description/>
44 <role-name>admin</role-name>
45 </security-role>
46 -->
47
tom0eb04ca2014-08-25 14:34:51 -070048 <servlet>
49 <servlet-name>JAX-RS Service</servlet-name>
50 <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
51 <init-param>
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080052 <param-name>com.sun.jersey.config.property.resourceConfigClass</param-name>
53 <param-value>com.sun.jersey.api.core.ClassNamesResourceConfig</param-value>
54 </init-param>
55 <init-param>
56 <param-name>com.sun.jersey.config.property.classnames</param-name>
57 <param-value>
Brian O'Connorabafb502014-12-02 22:26:20 -080058 org.onosproject.rest.exceptions.EntityNotFoundMapper,
59 org.onosproject.rest.exceptions.ServiceNotFoundMapper,
Ray Milkey2287d882015-01-30 10:15:20 -080060 org.onosproject.rest.exceptions.NotFoundMapper,
Brian O'Connorabafb502014-12-02 22:26:20 -080061 org.onosproject.rest.exceptions.ServerErrorMapper,
Thomas Vachuskae6847432015-04-03 23:56:46 -070062 org.onosproject.rest.exceptions.BadRequestMapper,
Brian O'Connorabafb502014-12-02 22:26:20 -080063 org.onosproject.rest.JsonBodyWriter,
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080064
Thomas Vachuska02aeb032015-01-06 22:36:30 -080065 org.onosproject.rest.ApplicationsWebResource,
Thomas Vachuskae6847432015-04-03 23:56:46 -070066 org.onosproject.rest.ComponentConfigWebResource,
Thomas Vachuskade563cf2015-04-01 00:28:50 -070067 org.onosproject.rest.ClusterWebResource,
Brian O'Connorabafb502014-12-02 22:26:20 -080068 org.onosproject.rest.DevicesWebResource,
69 org.onosproject.rest.LinksWebResource,
Ray Milkey1f95bd32014-12-10 11:11:00 -080070 org.onosproject.rest.HostsWebResource,
Ray Milkey2b217142014-12-15 09:24:24 -080071 org.onosproject.rest.IntentsWebResource,
Ray Milkey4f5de002014-12-17 19:26:11 -080072 org.onosproject.rest.FlowsWebResource,
Ray Milkey82e50312015-01-22 17:01:42 -080073 org.onosproject.rest.TopologyWebResource,
Ray Milkey19ffea32015-01-28 10:03:06 -080074 org.onosproject.rest.ConfigResource,
75 org.onosproject.rest.PathsWebResource
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080076 </param-value>
tom0eb04ca2014-08-25 14:34:51 -070077 </init-param>
78 <load-on-startup>1</load-on-startup>
79 </servlet>
80
81 <servlet-mapping>
82 <servlet-name>JAX-RS Service</servlet-name>
83 <url-pattern>/*</url-pattern>
84 </servlet-mapping>
85
Brian O'Connorabafb502014-12-02 22:26:20 -080086</web-app>