소스 검색

SEC-884: As per discussion in this issue. Added Javadoc to specify that Authentication object passed to decide method must not be null.

Luke Taylor 16 년 전
부모
커밋
ab69a0a101
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      core/src/main/java/org/springframework/security/access/AccessDecisionManager.java

+ 1 - 1
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
      *