Fraboni, Gino (gf403a) | 578368f | 2017-05-03 13:47:43 -0400 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="ISO-8859-1"?>
|
| 2 | <!--
|
| 3 | ============LICENSE_START======================================================= |
| 4 | MODEL LOADER SERVICE |
| 5 | ================================================================================ |
| 6 | Copyright (C) 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 |
|
| 12 | http://www.apache.org/licenses/LICENSE-2.0
|
| 13 |
|
| 14 | Unless required by applicable law or agreed to in writing, software
|
| 15 | distributed under the License is distributed on an "AS IS" BASIS,
|
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 17 | See the License for the specific language governing permissions and
|
| 18 | limitations under the License. |
| 19 | ============LICENSE_END=========================================================
|
| 20 | -->
|
| 21 |
|
| 22 | <!--
|
| 23 | Copyright (c) 2016 AT&T Intellectual Property. All rights reserved.
|
| 24 | -->
|
| 25 | <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 26 | xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
|
| 27 | metadata-complete="false" version="3.0">
|
| 28 |
|
| 29 | <filter-mapping>
|
| 30 | <filter-name>InterceptorFilter</filter-name>
|
| 31 | <url-pattern>/services/*</url-pattern>
|
| 32 | </filter-mapping>
|
| 33 | <filter-mapping>
|
| 34 | <filter-name>InterceptorFilter</filter-name>
|
| 35 | <url-pattern>/rest/*</url-pattern>
|
| 36 | </filter-mapping>
|
| 37 |
|
| 38 | <filter-mapping>
|
| 39 | <filter-name>springSecurityFilterChain</filter-name>
|
| 40 | <url-pattern>/*</url-pattern>
|
| 41 | </filter-mapping>
|
| 42 |
|
| 43 | <servlet-mapping>
|
| 44 | <servlet-name>ManagementServlet</servlet-name>
|
| 45 | <url-pattern>/mgmt</url-pattern>
|
| 46 | </servlet-mapping>
|
| 47 |
|
| 48 | <servlet-mapping>
|
| 49 | <servlet-name>RestletServlet</servlet-name>
|
| 50 | <url-pattern>/rest/*</url-pattern>
|
| 51 | </servlet-mapping>
|
| 52 |
|
| 53 | <servlet-mapping>
|
| 54 | <servlet-name>CamelServlet</servlet-name>
|
| 55 | <url-pattern>/services/*</url-pattern>
|
| 56 | </servlet-mapping>
|
| 57 |
|
| 58 | <servlet-mapping>
|
| 59 | <servlet-name>jsp</servlet-name>
|
| 60 | <url-pattern>*.jsp</url-pattern>
|
| 61 | <url-pattern>*.jspf</url-pattern>
|
| 62 | <url-pattern>*.jspx</url-pattern>
|
| 63 | <url-pattern>*.xsp</url-pattern>
|
| 64 | <url-pattern>*.JSP</url-pattern>
|
| 65 | <url-pattern>*.JSPF</url-pattern>
|
| 66 | <url-pattern>*.JSPX</url-pattern>
|
| 67 | <url-pattern>*.XSP</url-pattern>
|
| 68 | </servlet-mapping>
|
| 69 | <servlet-mapping>
|
| 70 | <servlet-name>default</servlet-name>
|
| 71 | <url-pattern>/*</url-pattern>
|
| 72 | </servlet-mapping>
|
| 73 | </web-app>
|