tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 2 | <!-- |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 3 | ~ Copyright 2014 Open Networking Laboratory |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 4 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 5 | ~ 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 Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 8 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 9 | ~ 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 Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 16 | --> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 17 | <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 Vachuska | 93da11f | 2015-02-22 11:09:10 -0800 | [diff] [blame] | 23 | <!-- |
| 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 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 48 | <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 Vachuska | ca60f2b | 2014-11-06 01:34:28 -0800 | [diff] [blame] | 52 | <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'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 58 | org.onosproject.rest.exceptions.EntityNotFoundMapper, |
| 59 | org.onosproject.rest.exceptions.ServiceNotFoundMapper, |
Ray Milkey | 2287d88 | 2015-01-30 10:15:20 -0800 | [diff] [blame] | 60 | org.onosproject.rest.exceptions.NotFoundMapper, |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 61 | org.onosproject.rest.exceptions.ServerErrorMapper, |
Thomas Vachuska | e684743 | 2015-04-03 23:56:46 -0700 | [diff] [blame] | 62 | org.onosproject.rest.exceptions.BadRequestMapper, |
Ray Milkey | a0cecdc | 2015-04-09 09:51:52 -0700 | [diff] [blame] | 63 | org.onosproject.rest.exceptions.WebApplicationExceptionMapper, |
Jonathan Hart | 9bb32ab | 2015-05-05 18:17:31 -0700 | [diff] [blame] | 64 | org.onosproject.rest.resources.JsonBodyWriter, |
Thomas Vachuska | ca60f2b | 2014-11-06 01:34:28 -0800 | [diff] [blame] | 65 | |
Jonathan Hart | 9bb32ab | 2015-05-05 18:17:31 -0700 | [diff] [blame] | 66 | org.onosproject.rest.resources.ApplicationsWebResource, |
| 67 | org.onosproject.rest.resources.ComponentConfigWebResource, |
| 68 | org.onosproject.rest.resources.ClusterWebResource, |
| 69 | org.onosproject.rest.resources.DevicesWebResource, |
| 70 | org.onosproject.rest.resources.LinksWebResource, |
| 71 | org.onosproject.rest.resources.HostsWebResource, |
| 72 | org.onosproject.rest.resources.IntentsWebResource, |
| 73 | org.onosproject.rest.resources.FlowsWebResource, |
| 74 | org.onosproject.rest.resources.TopologyWebResource, |
| 75 | org.onosproject.rest.resources.ConfigWebResource, |
| 76 | org.onosproject.rest.resources.PathsWebResource |
Thomas Vachuska | ca60f2b | 2014-11-06 01:34:28 -0800 | [diff] [blame] | 77 | </param-value> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 78 | </init-param> |
| 79 | <load-on-startup>1</load-on-startup> |
| 80 | </servlet> |
| 81 | |
| 82 | <servlet-mapping> |
| 83 | <servlet-name>JAX-RS Service</servlet-name> |
| 84 | <url-pattern>/*</url-pattern> |
| 85 | </servlet-mapping> |
| 86 | |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 87 | </web-app> |