You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2013/01/10 19:29:12 UTC

svn commit: r1431545 - /isis/site/trunk/content/components/security/shiro/about.md

Author: danhaywood
Date: Thu Jan 10 18:29:12 2013
New Revision: 1431545

URL: http://svn.apache.org/viewvc?rev=1431545&view=rev
Log:
isis site - updating shiro security page

Modified:
    isis/site/trunk/content/components/security/shiro/about.md

Modified: isis/site/trunk/content/components/security/shiro/about.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/components/security/shiro/about.md?rev=1431545&r1=1431544&r2=1431545&view=diff
==============================================================================
--- isis/site/trunk/content/components/security/shiro/about.md (original)
+++ isis/site/trunk/content/components/security/shiro/about.md Thu Jan 10 18:29:12 2013
@@ -2,7 +2,7 @@ Title: Shiro Security
 
 Security implementations provide authentication and authorization services. They do not providing services such as auditing, encryption, non-repudiation or confidentiality.
 
-The shiro implementation provides integration with [Apache Shiro](http://shiro.apache.org].
+The shiro implementation provides integration with [Apache Shiro](http://shiro.apache.org).
 
 ### Releases
 
@@ -15,6 +15,19 @@ The [quickstart archetype](../../../gett
 Shiro itself reads this file and is bootstrapped using the following settings to be added near the top of the `WEB-INF/web.xml` file:
 
 <pre>
+&lt;listener&gt;
+    &lt;listener-class&gt;org.apache.shiro.web.env.EnvironmentLoaderListener&lt;/listener-class&gt;
+&lt;/listener&gt;
+
+&lt;filter&gt;
+    &lt;filter-name&gt;ShiroFilter&lt;/filter-name&gt;
+    &lt;filter-class&gt;org.apache.shiro.web.servlet.ShiroFilter&lt;/filter-class&gt;
+&lt;/filter&gt;
+
+&lt;filter-mapping&gt;
+    &lt;filter-name&gt;ShiroFilter&lt;/filter-name&gt;
+    &lt;url-pattern&gt;/*&lt;/url-pattern&gt;
+&lt;/filter-mapping&gt;
 </pre>
 
 ### Format of Permissions
@@ -52,7 +65,8 @@ com.mycompany.myapp                     
 </pre>
 
 
+<!--
 ### Configuring 
 
 - [Using Apache DS for authentication](using-apache-ds-for-authentication.html)
-
+-->