You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bi...@apache.org on 2005/12/11 02:08:06 UTC

svn commit: r355849 - /tomcat/container/tc5.5.x/tester/web/WEB-INF/web.xml

Author: billbarker
Date: Sat Dec 10 17:08:02 2005
New Revision: 355849

URL: http://svn.apache.org/viewcvs?rev=355849&view=rev
Log:
Upps, need this one as well

Modified:
    tomcat/container/tc5.5.x/tester/web/WEB-INF/web.xml

Modified: tomcat/container/tc5.5.x/tester/web/WEB-INF/web.xml
URL: http://svn.apache.org/viewcvs/tomcat/container/tc5.5.x/tester/web/WEB-INF/web.xml?rev=355849&r1=355848&r2=355849&view=diff
==============================================================================
--- tomcat/container/tc5.5.x/tester/web/WEB-INF/web.xml (original)
+++ tomcat/container/tc5.5.x/tester/web/WEB-INF/web.xml Sat Dec 10 17:08:02 2005
@@ -508,6 +508,11 @@
     </servlet>
 
     <servlet>
+        <servlet-name>Authentication06</servlet-name>
+        <servlet-class>org.apache.tester.Authentication06</servlet-class>
+    </servlet>
+
+    <servlet>
         <servlet-name>Context00</servlet-name>
         <servlet-class>org.apache.tester.Context00</servlet-class>
         <load-on-startup>99</load-on-startup>
@@ -1109,6 +1114,21 @@
     </servlet-mapping>
 
     <servlet-mapping>
+        <servlet-name>Authentication05</servlet-name>
+        <url-pattern>/disallowed/private/Authentication05</url-pattern>
+    </servlet-mapping>
+
+    <servlet-mapping>
+        <servlet-name>Authentication06</servlet-name>
+        <url-pattern>/allowed/public/Authentication06</url-pattern>
+    </servlet-mapping>
+
+    <servlet-mapping>
+        <servlet-name>Authentication05</servlet-name>
+        <url-pattern>/allowed/private/Authentication05</url-pattern>
+    </servlet-mapping>
+
+    <servlet-mapping>
         <servlet-name>Context00</servlet-name>
         <url-pattern>/Context00</url-pattern>
     </servlet-mapping>
@@ -1987,6 +2007,56 @@
         <web-resource-collection>
             <web-resource-name>No Users Allowed Area</web-resource-name>
             <url-pattern>/disallowed/*</url-pattern>
+        </web-resource-collection>
+        <auth-constraint>
+        </auth-constraint>
+    </security-constraint>
+    <security-constraint>
+        <web-resource-collection>
+            <web-resource-name>Really No Users Allowed Area</web-resource-name>
+            <url-pattern>/disallowed/private/*</url-pattern>
+        </web-resource-collection>
+        <auth-constraint>
+        </auth-constraint>
+    </security-constraint>
+    <security-constraint>
+        <web-resource-collection>
+            <web-resource-name>Really No Users Allowed Area</web-resource-name>
+            <url-pattern>/disallowed/private/*</url-pattern>
+        </web-resource-collection>
+        <auth-constraint>
+            <role-name>*</role-name>
+        </auth-constraint>
+    </security-constraint>
+
+    <security-constraint>
+        <web-resource-collection>
+            <web-resource-name>All Users Allowed Area</web-resource-name>
+            <url-pattern>/allowed/public/*</url-pattern>
+        </web-resource-collection>
+        <auth-constraint>
+            <role-name>*</role-name>
+        </auth-constraint>
+    </security-constraint>
+    <security-constraint>
+        <web-resource-collection>
+            <web-resource-name>All Users Allowed Area</web-resource-name>
+            <url-pattern>/allowed/public/*</url-pattern>
+        </web-resource-collection>
+    </security-constraint>
+    <security-constraint>
+        <web-resource-collection>
+            <web-resource-name>All Users Allowed Area</web-resource-name>
+            <url-pattern>/allowed/private/*</url-pattern>
+        </web-resource-collection>
+        <auth-constraint>
+            <role-name>*</role-name>
+        </auth-constraint>
+    </security-constraint>
+    <security-constraint>
+        <web-resource-collection>
+            <web-resource-name>All Users Allowed Area</web-resource-name>
+            <url-pattern>/allowed/private/*</url-pattern>
         </web-resource-collection>
         <auth-constraint>
         </auth-constraint>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org