aboutsummaryrefslogtreecommitdiffstats
path: root/examples/examples-myfirstpolicy
ModeNameSize
-rw-r--r--pom.xml8533logstatsplain
d---------src62logstatsplain
n62'>62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
  ============LICENSE_START==========================================
  org.onap.aai
  ===================================================================
  Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
  Copyright © 2017-2018 Amdocs
  ===================================================================
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

         http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
  ============LICENSE_END============================================
  -->

<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
	metadata-complete="false" version="3.0">

	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>/WEB-INF/spring-servlet.xml,
					classpath:applicationContext.xml
		</param-value>
  	</context-param>
  	
  	<context-param>
        <param-name>spring.profiles.default</param-name>
        <param-value>nooauth</param-value>
    </context-param>
    
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
	
	<servlet>
		<servlet-name>ManagementServlet</servlet-name>
		<servlet-class>ajsc.ManagementServlet</servlet-class>
	</servlet>

    
  	<filter> 
		<filter-name>InterceptorFilter</filter-name>
		<filter-class>ajsc.filters.InterceptorFilter</filter-class>
		<init-param>
                <param-name>preProcessor_interceptor_config_file</param-name>
                <param-value>/etc/PreProcessorInterceptors.properties</param-value>
        </init-param>
        <init-param>
                <param-name>postProcessor_interceptor_config_file</param-name>
                <param-value>/etc/PostProcessorInterceptors.properties</param-value>
        </init-param>
        
	</filter>

	 <servlet>
		<servlet-name>RestletServlet</servlet-name>
		<servlet-class>ajsc.restlet.RestletSpringServlet</servlet-class>
		<init-param>
				<param-name>org.restlet.component</param-name>
				<param-value>restletComponent</param-value>
		</init-param>
	</servlet>
	
	<servlet>
		<servlet-name>CamelServlet</servlet-name>
		<servlet-class>ajsc.servlet.AjscCamelServlet</servlet-class>
	</servlet>


	<filter>
		<filter-name>springSecurityFilterChain</filter-name>
		<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
	</filter>

	<servlet>
		<servlet-name>spring</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<load-on-startup>1</load-on-startup>
	</servlet>	
	
<!--	<servlet-mapping>
		<servlet-name>spring</servlet-name>
		<url-pattern>/</url-pattern>
	</servlet-mapping>-->

<!-- BEGIN jsp -->

  <servlet id="jsp">
    <servlet-name>jsp</servlet-name>
    <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
  </servlet>

	
	

	  
	<!-- BEGIN static content -->
	<servlet>
 	   <servlet-name>default</servlet-name>
	    <servlet-class>org.eclipse.jetty.servlet.DefaultServlet</servlet-class>
	    <init-param>
	        <param-name>dirAllowed</param-name>
	        <param-value>true</param-value>
	    </init-param>
	</servlet>
	<!-- END static content --> 	
</web-app>