Uses of Class
org.springframework.security.access.AccessDeniedException

Packages that use AccessDeniedException
org.springframework.security.access Core access-control related code, including security metadata related classes interception code Security access control annotations Voter-based AccessDecisionManager implementations  
org.springframework.security.access.event   
org.springframework.security.access.expression.method   
org.springframework.security.access.intercept Actually enforces the security and ties the whole security system together. 
org.springframework.security.access.prepost Contains the infrastructure classes for handling the @PreAuthorize, @PreFilter, @PostAuthorize and 
org.springframework.security.access.vote Implements a vote-based approach to authorization decisions. 
org.springframework.security.acls.afterinvocation   
org.springframework.security.web.access   
 

Uses of AccessDeniedException in org.springframework.security.access
 

Subclasses of AccessDeniedException in org.springframework.security.access
 class AuthorizationServiceException
          Thrown if an authorization request could not be processed due to a system problem.
 

Methods in org.springframework.security.access that throw AccessDeniedException
 void AccessDecisionManager.decide(Authentication authentication, Object object, Collection<ConfigAttribute> configAttributes)
          Resolves an access control decision for the passed parameters.
 Object AfterInvocationProvider.decide(Authentication authentication, Object object, Collection<ConfigAttribute> attributes, Object returnedObject)
           
 

Uses of AccessDeniedException in org.springframework.security.access.event
 

Methods in org.springframework.security.access.event that return AccessDeniedException
 AccessDeniedException AuthorizationFailureEvent.getAccessDeniedException()
           
 

Constructors in org.springframework.security.access.event with parameters of type AccessDeniedException
AuthorizationFailureEvent(Object secureObject, Collection<ConfigAttribute> attributes, Authentication authentication, AccessDeniedException accessDeniedException)
          Construct the event.
 

Uses of AccessDeniedException in org.springframework.security.access.expression.method
 

Methods in org.springframework.security.access.expression.method that throw AccessDeniedException
 Object ExpressionBasedPostInvocationAdvice.after(Authentication authentication, org.aopalliance.intercept.MethodInvocation mi, PostInvocationAttribute postAttr, Object returnedObject)
           
 

Uses of AccessDeniedException in org.springframework.security.access.intercept
 

Methods in org.springframework.security.access.intercept that throw AccessDeniedException
 Object AfterInvocationProviderManager.decide(Authentication authentication, Object object, Collection<ConfigAttribute> config, Object returnedObject)
           
 Object AfterInvocationManager.decide(Authentication authentication, Object object, Collection<ConfigAttribute> attributes, Object returnedObject)
          Given the details of a secure object invocation including its returned Object, make an access control decision or optionally modify the returned Object.
 

Uses of AccessDeniedException in org.springframework.security.access.prepost
 

Methods in org.springframework.security.access.prepost that throw AccessDeniedException
 Object PostInvocationAuthorizationAdvice.after(Authentication authentication, org.aopalliance.intercept.MethodInvocation mi, PostInvocationAttribute pia, Object returnedObject)
           
 Object PostInvocationAdviceProvider.decide(Authentication authentication, Object object, Collection<ConfigAttribute> config, Object returnedObject)
           
 

Uses of AccessDeniedException in org.springframework.security.access.vote
 

Methods in org.springframework.security.access.vote that throw AccessDeniedException
 void UnanimousBased.decide(Authentication authentication, Object object, Collection<ConfigAttribute> attributes)
          This concrete implementation polls all configured AccessDecisionVoters for each ConfigAttribute and grants access if only grant (or abstain) votes were received.
 void ConsensusBased.decide(Authentication authentication, Object object, Collection<ConfigAttribute> configAttributes)
          This concrete implementation simply polls all configured AccessDecisionVoters and upon completion determines the consensus of granted against denied responses.
 void AffirmativeBased.decide(Authentication authentication, Object object, Collection<ConfigAttribute> configAttributes)
          This concrete implementation simply polls all configured AccessDecisionVoters and grants access if any AccessDecisionVoter voted affirmatively.
 

Uses of AccessDeniedException in org.springframework.security.acls.afterinvocation
 

Methods in org.springframework.security.acls.afterinvocation that throw AccessDeniedException
 Object AclEntryAfterInvocationProvider.decide(Authentication authentication, Object object, Collection<ConfigAttribute> config, Object returnedObject)
           
 Object AclEntryAfterInvocationCollectionFilteringProvider.decide(Authentication authentication, Object object, Collection<ConfigAttribute> config, Object returnedObject)
           
 

Uses of AccessDeniedException in org.springframework.security.web.access
 

Methods in org.springframework.security.web.access with parameters of type AccessDeniedException
 void AccessDeniedHandlerImpl.handle(HttpServletRequest request, HttpServletResponse response, AccessDeniedException accessDeniedException)
           
 void AccessDeniedHandler.handle(HttpServletRequest request, HttpServletResponse response, AccessDeniedException accessDeniedException)
          Handles an access denied failure.
 



Copyright © 2004-2009 SpringSource, Inc. All Rights Reserved.