Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 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> |
rb7147 | 4281508 | 2017-12-04 16:45:55 -0500 | [diff] [blame^] | 13 | <session-timeout>30</session-timeout> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 14 | <tracking-mode>COOKIE</tracking-mode> |
| 15 | </session-config> |
rb7147 | 4281508 | 2017-12-04 16:45:55 -0500 | [diff] [blame^] | 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> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 24 | |
| 25 | </web-app> |