1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
4 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
7 <servlet-name>JAXRSHostTracker</servlet-name>
8 <servlet-class>com.sun.jersey.spi.spring.container.servlet.SpringServlet</servlet-class>
10 <param-name>javax.ws.rs.Application</param-name>
11 <param-value>org.opendaylight.controller.hosttracker.northbound.HostTrackerNorthboundRSApplication</param-value>
13 <load-on-startup>1</load-on-startup>
17 <servlet-name>JAXRSHostTracker</servlet-name>
18 <url-pattern>/*</url-pattern>
21 <!-- Spring Security related -->
24 <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
28 <param-name>contextConfigLocation</param-name>
29 <param-value>/WEB-INF/spring/*.xml</param-value>
33 <filter-name>springSecurityFilterChain</filter-name>
35 org.springframework.web.filter.DelegatingFilterProxy
40 <filter-name>springSecurityFilterChain</filter-name>
41 <url-pattern>/*</url-pattern>