| <?xml version="1.0" encoding="UTF-8"?> |
| <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"> |
| <display-name>mso-workflow-message-adapter</display-name> |
| <welcome-file-list> |
| <welcome-file>check.html</welcome-file> |
| </welcome-file-list> |
| <context-param> |
| <param-name>log.configuration</param-name> |
| <param-value>logback.workflow-message-adapter.xml</param-value> |
| </context-param> |
| <context-param> |
| <param-name>mso.configuration</param-name> |
| <param-value>MSO_PROP_WORKFLOW_MESSAGE_ADAPTER=mso.workflow-message-adapter.properties,MSO_PROP_TOPOLOGY=topology.properties,MSO_PROP_AAF=cadi.properties</param-value> |
| </context-param> |
| <context-param> |
| <param-name>resteasy.resources</param-name> |
| <param-value> |
| org.openecomp.mso.logger.MsoLoggingServlet, |
| org.openecomp.mso.MsoStatusHandler, |
| org.openecomp.mso.adapters.workflowmessage.WMAdapterRest |
| </param-value> |
| </context-param> |
| <context-param> |
| <param-name>resteasy.providers</param-name> |
| <param-value>org.openecomp.mso.adapters.providers.JettisonStyleMapperProvider</param-value> |
| </context-param> |
| <servlet> |
| <servlet-name>Resteasy</servlet-name> |
| <servlet-class>org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher</servlet-class> |
| </servlet> |
| <servlet-mapping> |
| <servlet-name>Resteasy</servlet-name> |
| <url-pattern>/*</url-pattern> |
| </servlet-mapping> |
| <filter> |
| <filter-name>LogFilter</filter-name> |
| <filter-class>org.openecomp.mso.logger.LogFilter</filter-class> |
| </filter> |
| <filter-mapping> |
| <filter-name>LogFilter</filter-name> |
| <url-pattern>/*</url-pattern> |
| </filter-mapping> |
| <listener> |
| <listener-class>org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap</listener-class> |
| </listener> |
| <security-constraint> |
| <web-resource-collection> |
| <web-resource-name>SiteStatus</web-resource-name> |
| <description>SiteStatus APIs</description> |
| <url-pattern>/rest/setStatus/*</url-pattern> |
| <http-method>POST</http-method> |
| </web-resource-collection> |
| <auth-constraint> |
| <role-name>SiteControl-Client</role-name> |
| </auth-constraint> |
| </security-constraint> |
| <security-constraint> |
| <web-resource-collection> |
| <web-resource-name>MSO internal Requests</web-resource-name> |
| <description>Internal Requests</description> |
| <url-pattern>/rest/logging/*</url-pattern> |
| <url-pattern>/rest/properties/*</url-pattern> |
| <http-method>POST</http-method> |
| <http-method>GET</http-method> |
| </web-resource-collection> |
| <auth-constraint> |
| <role-name>MSO-Client</role-name> |
| </auth-constraint> |
| </security-constraint> |
| <login-config> |
| <auth-method>BASIC</auth-method> |
| <realm-name>ApplicationRealm</realm-name> |
| </login-config> |
| <security-role> |
| <role-name>SiteControl-Client</role-name> |
| </security-role> |
| <security-role> |
| <role-name>MSO-Client</role-name> |
| </security-role> |
| </web-app> |