Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
| 2 | <!--
|
| 3 | ============LICENSE_START=======================================================
|
| 4 | ECOMP MSO
|
| 5 | ================================================================================
|
| 6 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
|
| 7 | ================================================================================
|
| 8 | Licensed under the Apache License, Version 2.0 (the "License");
|
| 9 | you may not use this file except in compliance with the License.
|
| 10 | You may obtain a copy of the License at
|
| 11 |
|
| 12 | http://www.apache.org/licenses/LICENSE-2.0
|
| 13 |
|
| 14 | Unless required by applicable law or agreed to in writing, software
|
| 15 | distributed under the License is distributed on an "AS IS" BASIS,
|
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 17 | See the License for the specific language governing permissions and
|
| 18 | limitations under the License.
|
| 19 | ============LICENSE_END=========================================================
|
| 20 | -->
|
| 21 | <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
|
| 22 | <display-name>MSO Common BPMN Workflow Servlet</display-name>
|
| 23 | <servlet>
|
| 24 | <servlet-name>resteasy-servlet</servlet-name>
|
| 25 | <servlet-class>org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher</servlet-class>
|
| 26 | <init-param>
|
| 27 | <param-name>javax.ws.rs.Application</param-name>
|
| 28 | <param-value>org.openecomp.mso.bpmn.common.workflow.service.WorkflowResourceApplication</param-value>
|
| 29 | </init-param>
|
| 30 | </servlet>
|
| 31 | <servlet-mapping>
|
| 32 | <servlet-name>resteasy-servlet</servlet-name>
|
| 33 | <url-pattern>/*</url-pattern>
|
| 34 | </servlet-mapping>
|
| 35 | <context-param>
|
| 36 | <param-name>mso.configuration</param-name>
|
| 37 | <param-value>MSO_PROP_TOPOLOGY=topology.properties</param-value>
|
| 38 | </context-param>
|
| 39 | <context-param>
|
| 40 | <param-name>log.configuration</param-name>
|
| 41 | <param-value>logback.bpmn.xml</param-value>
|
| 42 | </context-param>
|
| 43 | <context-param>
|
| 44 | <param-name>resteasy.resources</param-name>
|
| 45 | <param-value>org.openecomp.mso.logger.MsoLoggingServlet,org.openecomp.mso.bpmn.core.HealthCheckHandler</param-value>
|
| 46 | </context-param>
|
| 47 | <filter>
|
| 48 | <filter-name>LogFilter</filter-name>
|
| 49 | <filter-class>org.openecomp.mso.logger.LogFilter</filter-class>
|
| 50 | </filter>
|
| 51 | <filter-mapping>
|
| 52 | <filter-name>LogFilter</filter-name>
|
| 53 | <url-pattern>/*</url-pattern>
|
| 54 | </filter-mapping>
|
| 55 | <security-constraint>
|
| 56 | <web-resource-collection>
|
| 57 | <web-resource-name>HTTPBasicAuth</web-resource-name>
|
| 58 | <description>Authentication for Client Apps</description>
|
| 59 | <url-pattern>/workflow/*</url-pattern>
|
| 60 | <http-method>GET</http-method>
|
| 61 | <http-method>POST</http-method>
|
| 62 | </web-resource-collection>
|
| 63 | <auth-constraint>
|
| 64 | <role-name>BPMN-Client</role-name>
|
| 65 | </auth-constraint>
|
| 66 | </security-constraint>
|
| 67 | <login-config>
|
| 68 | <auth-method>BASIC</auth-method>
|
| 69 | <realm-name>ApplicationRealm</realm-name>
|
| 70 | </login-config>
|
| 71 | <security-role>
|
| 72 | <role-name>BPMN-Client</role-name>
|
| 73 | </security-role>
|
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 74 | </web-app> |