<?xml version="1.0" encoding="ISO-8859-1"?> | |
<!-- | |
============LICENSE_START======================================================= | |
MODEL LOADER SERVICE | |
================================================================================ | |
Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. | |
================================================================================ | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software | |
distributed under the License is distributed on an "AS IS" BASIS, | |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
See the License for the specific language governing permissions and | |
limitations under the License. | |
============LICENSE_END========================================================= | |
--> | |
<!-- | |
Copyright (c) 2016 AT&T Intellectual Property. All rights reserved. | |
--> | |
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" | |
metadata-complete="false" version="3.0"> | |
<filter-mapping> | |
<filter-name>InterceptorFilter</filter-name> | |
<url-pattern>/services/*</url-pattern> | |
</filter-mapping> | |
<filter-mapping> | |
<filter-name>InterceptorFilter</filter-name> | |
<url-pattern>/rest/*</url-pattern> | |
</filter-mapping> | |
<filter-mapping> | |
<filter-name>springSecurityFilterChain</filter-name> | |
<url-pattern>/*</url-pattern> | |
</filter-mapping> | |
<servlet-mapping> | |
<servlet-name>ManagementServlet</servlet-name> | |
<url-pattern>/mgmt</url-pattern> | |
</servlet-mapping> | |
<servlet-mapping> | |
<servlet-name>RestletServlet</servlet-name> | |
<url-pattern>/rest/*</url-pattern> | |
</servlet-mapping> | |
<servlet-mapping> | |
<servlet-name>CamelServlet</servlet-name> | |
<url-pattern>/services/*</url-pattern> | |
</servlet-mapping> | |
<servlet-mapping> | |
<servlet-name>jsp</servlet-name> | |
<url-pattern>*.jsp</url-pattern> | |
<url-pattern>*.jspf</url-pattern> | |
<url-pattern>*.jspx</url-pattern> | |
<url-pattern>*.xsp</url-pattern> | |
<url-pattern>*.JSP</url-pattern> | |
<url-pattern>*.JSPF</url-pattern> | |
<url-pattern>*.JSPX</url-pattern> | |
<url-pattern>*.XSP</url-pattern> | |
</servlet-mapping> | |
<servlet-mapping> | |
<servlet-name>default</servlet-name> | |
<url-pattern>/*</url-pattern> | |
</servlet-mapping> | |
</web-app> |