소스 검색

More JavaDocs as per discussion on acegisecurity-developer list 16 Sep 06.

Ben Alex 19 년 전
부모
커밋
c5aa605068
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      sandbox/other/src/main/java/org/acegisecurity/acls/AccessControlEntry.java

+ 6 - 0
sandbox/other/src/main/java/org/acegisecurity/acls/AccessControlEntry.java

@@ -47,5 +47,11 @@ public interface AccessControlEntry {
 
     public Sid getSid();
 
+    /**
+     * Indicates the a Permission is being granted to the relevant Sid. If false,
+     * indicates the permission is being revoked/blocked.
+     * 
+     * @return true if being granted, false otherwise
+     */
     public boolean isGranting();
 }