a576f61f51476ac600aa505f0b3b4bb4adae8888
[policy/engine.git] / ONAP-SDK-APP / src / main / webapp / WEB-INF / web.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee" 
4          xmlns:web="http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
5          version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee">
6
7         <display-name>onap-sdk-app-os</display-name>
8
9         <!-- The app can function on a HA cluster -->
10         <distributable />
11
12         <session-config>
13                 <session-timeout>30</session-timeout>
14                 <tracking-mode>COOKIE</tracking-mode>
15         </session-config>
16         <filter>
17     <filter-name>SecurityXssFilter</filter-name>
18     <filter-class>org.onap.portalapp.filter.SecurityXssFilter</filter-class>
19    </filter> 
20     <filter-mapping>
21     <filter-name>SecurityXssFilter</filter-name>
22     <url-pattern>/*</url-pattern>
23   </filter-mapping>
24
25 </web-app>