Move adsal into its own subdirectory.
[controller.git] / opendaylight / northbound / httpservice-bridge / src / main / resources / WEB-INF / web.xml
diff --git a/opendaylight/northbound/httpservice-bridge/src/main/resources/WEB-INF/web.xml b/opendaylight/northbound/httpservice-bridge/src/main/resources/WEB-INF/web.xml
deleted file mode 100644 (file)
index 0622e90..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<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"
-  version="3.0">
-
-  <servlet>
-    <servlet-name>BridgeServlet</servlet-name>
-    <servlet-class>org.eclipse.equinox.http.servlet.HttpServiceServlet</servlet-class>
-    <load-on-startup>1</load-on-startup>
-  </servlet>
-
-  <servlet-mapping>
-    <servlet-name>BridgeServlet</servlet-name>
-    <url-pattern>/*</url-pattern>
-  </servlet-mapping>
-
-  <security-constraint>
-    <web-resource-collection>
-      <web-resource-name>HttpService</web-resource-name>
-      <url-pattern>/*</url-pattern>
-    </web-resource-collection>
-    <auth-constraint>
-      <role-name>System-Admin</role-name>
-      <role-name>Network-Admin</role-name>
-    </auth-constraint>
-  </security-constraint>
-
-  <security-role>
-    <role-name>System-Admin</role-name>
-  </security-role>
-
-  <security-role>
-    <role-name>Network-Admin</role-name>
-  </security-role>
-
-  <login-config>
-    <auth-method>BASIC</auth-method>
-    <realm-name>opendaylight</realm-name>
-  </login-config>
-
-</web-app>