From 07f3acfc9828610ccbaed38a9110e77219070f7c Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Fri, 11 Dec 2009 15:36:02 +0000 Subject: [PATCH] Fixed link in docbook --- docs/manual/src/docbook/core-filters.xml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/manual/src/docbook/core-filters.xml b/docs/manual/src/docbook/core-filters.xml index 67e07aada4..8934c99b54 100644 --- a/docs/manual/src/docbook/core-filters.xml +++ b/docs/manual/src/docbook/core-filters.xml @@ -174,11 +174,11 @@
<classname>SecurityContextPersistenceFilter</classname> - We covered the purpose of this all-important filter in so you might want to re-read that - section at this point. Let's first take a look at how you would configure it for use - with a FilterChainProxy. A basic configuration only requires the - bean itself We covered the purpose of this all-important filter in the Technical Overview chapter + so you might want to re-read that section at this point. Let's first take a look at how + you would configure it for use with a FilterChainProxy. A basic + configuration only requires the bean itself ]]> As we saw previously, this filter has two main tasks. It is responsible for @@ -195,8 +195,9 @@ class="org.springframework.security.web.context.SecurityContextPersistenceFilter now delegated to a separate strategy interface: public interface SecurityContextRepository { -SecurityContext loadContext(HttpRequestResponseHolder requestResponseHolder); -void saveContext(SecurityContext context, HttpServletRequest request, HttpServletResponse response); + SecurityContext loadContext(HttpRequestResponseHolder requestResponseHolder); + void saveContext(SecurityContext context, HttpServletRequest request, + HttpServletResponse response); } The HttpRequestResponseHolder is simply a container for the