From ab69a0a1016f279ba1698e8a8963cc38be93efa1 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Tue, 9 Jun 2009 01:14:55 +0000 Subject: [PATCH] SEC-884: As per discussion in this issue. Added Javadoc to specify that Authentication object passed to decide method must not be null. --- .../springframework/security/access/AccessDecisionManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/springframework/security/access/AccessDecisionManager.java b/core/src/main/java/org/springframework/security/access/AccessDecisionManager.java index 6e50e60b14..852c9e3e90 100644 --- a/core/src/main/java/org/springframework/security/access/AccessDecisionManager.java +++ b/core/src/main/java/org/springframework/security/access/AccessDecisionManager.java @@ -32,7 +32,7 @@ public interface AccessDecisionManager { /** * Resolves an access control decision for the passed parameters. * - * @param authentication the caller invoking the method + * @param authentication the caller invoking the method (not null) * @param object the secured object being called * @param configAttributes the configuration attributes associated with the secured object being invoked *