[jboss-cvs] Picketlink SVN: r1488 - in console/trunk/gui/war: WEB-INF and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Mar 5 10:32:17 EST 2012


Author: pcraveiro
Date: 2012-03-05 10:32:17 -0500 (Mon, 05 Mar 2012)
New Revision: 1488

Added:
   console/trunk/gui/war/WEB-INF/
   console/trunk/gui/war/WEB-INF/web.xml
Log:
Initial commit.

Added: console/trunk/gui/war/WEB-INF/web.xml
===================================================================
--- console/trunk/gui/war/WEB-INF/web.xml	                        (rev 0)
+++ console/trunk/gui/war/WEB-INF/web.xml	2012-03-05 15:32:17 UTC (rev 1488)
@@ -0,0 +1,18 @@
+<?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" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
+  <display-name>picketlink-console</display-name>
+  <welcome-file-list>
+    <welcome-file>index.html</welcome-file>
+  </welcome-file-list>
+  <listener>
+    <listener-class>org.picketlink.console.server.config.GuiceServletConfig</listener-class>
+  </listener>
+  <filter>
+    <filter-name>guiceFilter</filter-name>
+    <filter-class>com.google.inject.servlet.GuiceFilter</filter-class>
+  </filter>
+  <filter-mapping>
+    <filter-name>guiceFilter</filter-name>
+    <url-pattern>/*</url-pattern>
+  </filter-mapping>
+</web-app>
\ No newline at end of file



More information about the jboss-cvs-commits mailing list