Initial OpenECOMP policy/engine commit
[policy/engine.git] / ecomp-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>ecomp-sdk-app</display-name>
8
9         <!-- The app can function on a HA cluster -->
10         <distributable />
11         <servlet>
12                 <servlet-name>FileManagerServlet</servlet-name>
13                 <servlet-class>org.openecomp.policy.admin.PolicyManagerServlet</servlet-class>
14         </servlet>
15         <servlet-mapping>
16                 <servlet-name>FileManagerServlet</servlet-name>
17                 <url-pattern>/fm/*</url-pattern>
18         </servlet-mapping>      
19         <session-config>
20                 <session-timeout>7</session-timeout>
21                 <tracking-mode>COOKIE</tracking-mode>
22         </session-config>
23
24 </web-app>