Varun Gudisena | acc3ce0 | 2017-08-31 10:56:56 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="ISO-8859-1"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | org.onap.dmaap |
| 5 | ================================================================================ |
| 6 | Copyright © 2017 AT&T Intellectual Property. All rights reserved. |
| 7 | ================================================================================ |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | ============LICENSE_END========================================================= |
| 19 | |
| 20 | ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 21 | |
| 22 | --> |
| 23 | |
| 24 | <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 25 | xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" |
| 26 | metadata-complete="false" version="3.0"> |
| 27 | |
| 28 | <filter-mapping> |
| 29 | <filter-name>InterceptorFilter</filter-name> |
| 30 | <url-pattern>/services/*</url-pattern> |
| 31 | </filter-mapping> |
| 32 | <filter-mapping> |
| 33 | <filter-name>InterceptorFilter</filter-name> |
| 34 | <url-pattern>/rest/*</url-pattern> |
| 35 | </filter-mapping> |
| 36 | |
| 37 | <filter-mapping> |
| 38 | <filter-name>springSecurityFilterChain</filter-name> |
| 39 | <url-pattern>/*</url-pattern> |
| 40 | </filter-mapping> |
| 41 | |
| 42 | <servlet-mapping> |
| 43 | <servlet-name>ManagementServlet</servlet-name> |
| 44 | <url-pattern>/mgmt</url-pattern> |
| 45 | </servlet-mapping> |
| 46 | |
| 47 | <servlet-mapping> |
| 48 | <servlet-name>RestletServlet</servlet-name> |
| 49 | <url-pattern>/rest/*</url-pattern> |
| 50 | </servlet-mapping> |
| 51 | |
| 52 | <servlet-mapping> |
| 53 | <servlet-name>CamelServlet</servlet-name> |
| 54 | <url-pattern>/services/*</url-pattern> |
| 55 | </servlet-mapping> |
| 56 | |
| 57 | <servlet> |
| 58 | <servlet-name>jolokia-agent</servlet-name> |
| 59 | <servlet-class>org.jolokia.http.AgentServlet</servlet-class> |
| 60 | <load-on-startup>2</load-on-startup> |
| 61 | </servlet> |
| 62 | |
| 63 | <servlet-mapping> |
| 64 | <servlet-name>jolokia-agent</servlet-name> |
| 65 | <url-pattern>/jolokia/*</url-pattern> |
| 66 | </servlet-mapping> |
| 67 | |
| 68 | </web-app> |