Remove stale documentation 30/65230/1
authorRyan Goulding <ryandgoulding@gmail.com>
Mon, 6 Nov 2017 20:33:25 +0000 (15:33 -0500)
committerRyan Goulding <ryandgoulding@gmail.com>
Mon, 6 Nov 2017 20:36:34 +0000 (15:36 -0500)
README.md contained some references to installing the filter as
a ContainerRequestFilter.  Now, we actually use a regular
javax.servlet.Filter, so this documentation is out of date.
This patch just removes the stale documentation.

Change-Id: I7a5183f7db0c77e2012c03e754e7428ebab69098
Signed-off-by: Ryan Goulding <ryandgoulding@gmail.com>
README.md

index 44ab1349596e64281d168a37a80c435b3b060637..057b98ffa2f478377f7e6feed1139a948874a5ca 100644 (file)
--- a/README.md
+++ b/README.md
@@ -36,29 +36,6 @@ If you are using AAA from a non-RESTCONF context, you can install the necessary
 
        feature:install odl-aaa-shiro
 
-### Protecting your REST/RestConf resources
-
-Add the `AAAShiroFilter` filter to your REST resource (RESTCONF example):
-
-    <servlet>
-        <servlet-name>JAXRSRestconf</servlet-name>
-        <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
-        <init-param>
-            <param-name>javax.ws.rs.Application</param-name>
-            <param-value>org.opendaylight.controller.sal.rest.impl.RestconfApplication</param-value>
-        </init-param>
-        <!-- Token Auth Filter -->
-        <init-param>
-            <param-name>com.sun.jersey.spi.container.ContainerRequestFilters</param-name>
-            <param-value>
-                org.opendaylight.aaa.shiro.filters.AAAShiroFilter
-            </param-value>
-        </init-param>
-        <load-on-startup>1</load-on-startup>
-    </servlet>
-
-Rebuild and re-install your RESTFUL resource.
-
 ### Running
 
 Once the installation finishes, one can authenticate with the OpenDaylight controller by presenting a username/password and a domain name (scope):