blob: 198e2e9bc402b99c82c2e6e3cefd4705e4c0f31e [file] [log] [blame]
Fraboni, Gino (gf403a)578368f2017-05-03 13:47:43 -04001<?xml version="1.0" encoding="ISO-8859-1"?>
2<!--
Blackwell, Ian (ib733q)7b1f8132018-04-03 17:28:44 +01003 ============LICENSE_START==========================================
4 org.onap.aai
5 ===================================================================
6 Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
7 Copyright © 2017-2018 Amdocs
8 ===================================================================
Fraboni, Gino (gf403a)578368f2017-05-03 13:47:43 -04009 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
Blackwell, Ian (ib733q)7b1f8132018-04-03 17:28:44 +010012
13 http://www.apache.org/licenses/LICENSE-2.0
14
Fraboni, Gino (gf403a)578368f2017-05-03 13:47:43 -040015 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
Blackwell, Ian (ib733q)7b1f8132018-04-03 17:28:44 +010019 limitations under the License.
20 ============LICENSE_END============================================
Fraboni, Gino (gf403a)578368f2017-05-03 13:47:43 -040021 -->
22
Fraboni, Gino (gf403a)578368f2017-05-03 13:47:43 -040023<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
25 metadata-complete="false" version="3.0">
26
27 <context-param>
28 <param-name>contextConfigLocation</param-name>
29 <param-value>/WEB-INF/spring-servlet.xml,
30 classpath:applicationContext.xml
31 </param-value>
32 </context-param>
33
34 <context-param>
35 <param-name>spring.profiles.default</param-name>
36 <param-value>nooauth</param-value>
37 </context-param>
38
39 <listener>
40 <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
41 </listener>
42
43 <servlet>
44 <servlet-name>ManagementServlet</servlet-name>
45 <servlet-class>ajsc.ManagementServlet</servlet-class>
46 </servlet>
47
48
49 <filter>
50 <filter-name>InterceptorFilter</filter-name>
51 <filter-class>ajsc.filters.InterceptorFilter</filter-class>
52 <init-param>
53 <param-name>preProcessor_interceptor_config_file</param-name>
54 <param-value>/etc/PreProcessorInterceptors.properties</param-value>
55 </init-param>
56 <init-param>
57 <param-name>postProcessor_interceptor_config_file</param-name>
58 <param-value>/etc/PostProcessorInterceptors.properties</param-value>
59 </init-param>
60
61 </filter>
62
63 <servlet>
64 <servlet-name>RestletServlet</servlet-name>
65 <servlet-class>ajsc.restlet.RestletSpringServlet</servlet-class>
66 <init-param>
67 <param-name>org.restlet.component</param-name>
68 <param-value>restletComponent</param-value>
69 </init-param>
70 </servlet>
71
72 <servlet>
73 <servlet-name>CamelServlet</servlet-name>
74 <servlet-class>ajsc.servlet.AjscCamelServlet</servlet-class>
75 </servlet>
76
77
78 <filter>
79 <filter-name>springSecurityFilterChain</filter-name>
80 <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
81 </filter>
82
83 <servlet>
84 <servlet-name>spring</servlet-name>
85 <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
86 <load-on-startup>1</load-on-startup>
87 </servlet>
88
89<!-- <servlet-mapping>
90 <servlet-name>spring</servlet-name>
91 <url-pattern>/</url-pattern>
92 </servlet-mapping>-->
93
94<!-- BEGIN jsp -->
95
96 <servlet id="jsp">
97 <servlet-name>jsp</servlet-name>
98 <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
99 </servlet>
100
101
102
103
104
105 <!-- BEGIN static content -->
106 <servlet>
107 <servlet-name>default</servlet-name>
108 <servlet-class>org.eclipse.jetty.servlet.DefaultServlet</servlet-class>
109 <init-param>
110 <param-name>dirAllowed</param-name>
111 <param-value>true</param-value>
112 </init-param>
113 </servlet>
114 <!-- END static content -->
115</web-app>