From affa500778c7d131cd21f4c9a8585eb909df62f7 Mon Sep 17 00:00:00 2001
From: Luke Taylor
Date: Thu, 5 Jan 2006 01:02:49 +0000
Subject: [PATCH] Message string changed to reflect class name changes.
---
.../ui/digestauth/DigestProcessingFilter.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/core/src/main/java/org/acegisecurity/ui/digestauth/DigestProcessingFilter.java b/core/src/main/java/org/acegisecurity/ui/digestauth/DigestProcessingFilter.java
index a1a46162cf..a681210ed3 100644
--- a/core/src/main/java/org/acegisecurity/ui/digestauth/DigestProcessingFilter.java
+++ b/core/src/main/java/org/acegisecurity/ui/digestauth/DigestProcessingFilter.java
@@ -90,7 +90,7 @@ import org.springframework.util.StringUtils;
* authenticate again via Digest authentication.
*
*
- *
+ *
* Note there are limitations to Digest authentication, although it is a more
* comprehensive and secure solution than Basic authentication. Please see RFC
* 2617 section 4 for a full discussion on the advantages of Digest
@@ -98,8 +98,8 @@ import org.springframework.util.StringUtils;
* limitations that it still imposes.
*
*
- *
- * Do not use this class directly. Instead configure
+ *
+ * Do not use this class directly. Instead configure
* web.xml to use the {@link
* org.acegisecurity.util.FilterToBeanProxy}.
*
@@ -121,7 +121,7 @@ public class DigestProcessingFilter implements Filter, InitializingBean,
//~ Methods ================================================================
public void afterPropertiesSet() throws Exception {
- Assert.notNull(userDetailsService, "An AuthenticationDao is required");
+ Assert.notNull(userDetailsService, "A UserDetailsService is required");
Assert.notNull(authenticationEntryPoint,
"A DigestProcessingFilterEntryPoint is required");
}