Package org.acegisecurity.vote
SinceNot specified.
VersionNot specified.
AuthorNot specified.
Wiki javadoc Use textile entry format.
Add your comments here.
Interfaces
AccessDecisionVoter Indicates a class is responsible for voting on authorization decisions.
Classes
AbstractAccessDecisionManager Abstract implementation of AccessDecisionManager .
AbstractAclVoter

Given a domain object instance passed as a method argument, ensures the principal has appropriate permission as defined by the AclManager .

AffirmativeBased Simple concrete implementation of AccessDecisionManager that grants access if any AccessDecisionVoter returns an affirmative response.
AuthenticatedVoter

Votes if a getAttribute() of IS_AUTHENTICATED_FULLY or IS_AUTHENTICATED_REMEMBERED or IS_AUTHENTICATED_ANONYMOUSLY is present.

BasicAclEntryVoter

Given a domain object instance passed as a method argument, ensures the principal has appropriate permission as defined by the AclManager .

ConsensusBased Simple concrete implementation of AccessDecisionManager that uses a consensus-based approach.
RoleVoter

Votes if any getAttribute() starts with a prefix indicating that it is a role.

UnanimousBased Simple concrete implementation of AccessDecisionManager that requires all voters to abstain or grant access.
Implements a vote-based approach to authorization decisions.