Browse Source

Minor javadoc stuff.

3.0.x
Luke Taylor 17 years ago
parent
commit
fd1af34add
  1. 7
      acl/src/main/java/org/springframework/security/acls/vote/AclEntryVoter.java

7
acl/src/main/java/org/springframework/security/acls/vote/AclEntryVoter.java

@ -55,11 +55,12 @@ import org.springframework.util.StringUtils;
* method. * method.
* <p> * <p>
* If the method argument is <tt>null</tt>, the voter will abstain from voting. If the method argument * If the method argument is <tt>null</tt>, the voter will abstain from voting. If the method argument
* could not be found, an {@link org.springframework.security.access.AuthorizationServiceException} will be thrown. * could not be found, an {@link AuthorizationServiceException} will be thrown.
* <p> * <p>
* In practical terms users will typically setup a number of <tt>AclEntryVoter</tt>s. Each will have a * In practical terms users will typically setup a number of <tt>AclEntryVoter</tt>s. Each will have a
* different {@link #processDomainObjectClass}, {@link #processConfigAttribute} and {@link #requirePermission} * different {@link #setProcessDomainObjectClass processDomainObjectClass}, {@link #processConfigAttribute} and
* combination. For example, a small application might employ the following instances of <tt>AclEntryVoter</tt>: * {@link #requirePermission} combination. For example, a small application might employ the following instances of
* <tt>AclEntryVoter</tt>:
* <ul> * <ul>
* <li>Process domain object class <code>BankAccount</code>, configuration attribute * <li>Process domain object class <code>BankAccount</code>, configuration attribute
* <code>VOTE_ACL_BANK_ACCONT_READ</code>, require permission <code>BasePermission.READ</code></li> * <code>VOTE_ACL_BANK_ACCONT_READ</code>, require permission <code>BasePermission.READ</code></li>

Loading…
Cancel
Save