From 132163ec2e4ab35a636137271ff6906fe7b56cdc Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Thu, 26 May 2011 18:38:45 +0100 Subject: [PATCH] Add FAQ on accessing password from a UserDetailsService. --- docs/faq/src/docbook/faq.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/faq/src/docbook/faq.xml b/docs/faq/src/docbook/faq.xml index 793a1f52ad..bb665762e5 100644 --- a/docs/faq/src/docbook/faq.xml +++ b/docs/faq/src/docbook/faq.xml @@ -721,6 +721,19 @@ + + + How do I access the user's password in a + UserDetailsService? + + + You can't (and shouldn't). You are probably misunderstanding its purpose. + See What is a UserDetailsService? + above. + + + + How do I define the secured URLs within an application