blob: 381868eeb39d94486b815a2910a67d368da6d07c [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<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2014-present Open Networking Foundation
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 <!--
Thomas Vachuskaeff0e4e2015-08-11 00:26:24 -070024 -->
Thomas Vachuska93da11f2015-02-22 11:09:10 -080025 <security-constraint>
Thomas Vachuska93da11f2015-02-22 11:09:10 -080026 <web-resource-collection>
Thomas Vachuskaeff0e4e2015-08-11 00:26:24 -070027 <web-resource-name>Secured</web-resource-name>
Thomas Vachuska93da11f2015-02-22 11:09:10 -080028 <url-pattern>/*</url-pattern>
29 </web-resource-collection>
30 <auth-constraint>
Thomas Vachuska93da11f2015-02-22 11:09:10 -080031 <role-name>admin</role-name>
32 </auth-constraint>
33 </security-constraint>
34
Thomas Vachuskaeff0e4e2015-08-11 00:26:24 -070035 <security-role>
36 <role-name>admin</role-name>
37 </security-role>
38
Thomas Vachuska93da11f2015-02-22 11:09:10 -080039 <login-config>
40 <auth-method>BASIC</auth-method>
41 <realm-name>karaf</realm-name>
42 </login-config>
43
tom0eb04ca2014-08-25 14:34:51 -070044 <servlet>
45 <servlet-name>JAX-RS Service</servlet-name>
Jian Li9d616492016-03-09 10:52:49 -080046 <servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
tom0eb04ca2014-08-25 14:34:51 -070047 <init-param>
Thomas Vachuskaa026be72015-12-07 16:00:37 -080048 <param-name>javax.ws.rs.Application</param-name>
49 <param-value>org.onosproject.rest.resources.CoreWebApplication</param-value>
tom0eb04ca2014-08-25 14:34:51 -070050 </init-param>
51 <load-on-startup>1</load-on-startup>
52 </servlet>
53
54 <servlet-mapping>
55 <servlet-name>JAX-RS Service</servlet-name>
56 <url-pattern>/*</url-pattern>
57 </servlet-mapping>
58
Brian O'Connorabafb502014-12-02 22:26:20 -080059</web-app>