|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.springframework.security.access.vote.AbstractAccessDecisionManager
org.springframework.security.access.vote.AffirmativeBased
public class AffirmativeBased
Simple concrete implementation of AccessDecisionManager that grants access if any
AccessDecisionVoter returns an affirmative response.
| Field Summary |
|---|
| Fields inherited from class org.springframework.security.access.vote.AbstractAccessDecisionManager |
|---|
logger, messages |
| Constructor Summary | |
|---|---|
AffirmativeBased()
|
|
| Method Summary | |
|---|---|
void |
decide(Authentication authentication,
java.lang.Object object,
java.util.Collection<ConfigAttribute> configAttributes)
This concrete implementation simply polls all configured AccessDecisionVoters and grants access
if any AccessDecisionVoter voted affirmatively. |
| Methods inherited from class org.springframework.security.access.vote.AbstractAccessDecisionManager |
|---|
afterPropertiesSet, checkAllowIfAllAbstainDecisions, getDecisionVoters, isAllowIfAllAbstainDecisions, setAllowIfAllAbstainDecisions, setDecisionVoters, setMessageSource, supports, supports |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public AffirmativeBased()
| Method Detail |
|---|
public void decide(Authentication authentication,
java.lang.Object object,
java.util.Collection<ConfigAttribute> configAttributes)
throws AccessDeniedException
AccessDecisionVoters and grants access
if any AccessDecisionVoter voted affirmatively. Denies access only if there was a deny vote AND no
affirmative votes.If every AccessDecisionVoter abstained from voting, the decision will
be based on the AbstractAccessDecisionManager.isAllowIfAllAbstainDecisions() property (defaults to false).
authentication - the caller invoking the methodobject - the secured objectconfigAttributes - the configuration attributes associated with the method being invoked
AccessDeniedException - if access is denied
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||