Spring Security Framework

Uses of Interface
org.springframework.security.intercept.method.MethodDefinitionSource

Packages that use MethodDefinitionSource
org.springframework.security.annotation   
org.springframework.security.intercept.method Provides support objects for securing Java method invocations via different AOP libraries. 
org.springframework.security.intercept.method.aopalliance Enforces security for AOP Alliance MethodInvocations, such as via Spring AOP. 
org.springframework.security.intercept.method.aspectj Enforces security for AspectJ JointPoints, delegating secure object callbacks to the calling aspect. 
 

Uses of MethodDefinitionSource in org.springframework.security.annotation
 

Classes in org.springframework.security.annotation that implement MethodDefinitionSource
 class Jsr250MethodDefinitionSource
          Sources method security metadata from major JSR 250 security annotations.
 class SecuredMethodDefinitionSource
          Sources method security metadata from Spring Security's Secured annotation.
 

Uses of MethodDefinitionSource in org.springframework.security.intercept.method
 

Classes in org.springframework.security.intercept.method that implement MethodDefinitionSource
 class AbstractFallbackMethodDefinitionSource
          Abstract implementation of MethodDefinitionSource that supports both Spring AOP and AspectJ and caches configuration attribute resolution from: 1.
 class AbstractMethodDefinitionSource
          Abstract implementation of MethodDefinitionSource.
 class DelegatingMethodDefinitionSource
          Automatically tries a series of method definition sources, relying on the first source of metadata that provides a non-null response.
 class MapBasedMethodDefinitionSource
          Stores a ConfigAttributeDefinition for a method or class signature.
 class MethodDefinitionAttributes
          Provides ConfigAttributeDefinitions for a method signature (via the lookupAttributes method) by delegating to a configured Attributes object.
 

Uses of MethodDefinitionSource in org.springframework.security.intercept.method.aopalliance
 

Methods in org.springframework.security.intercept.method.aopalliance that return MethodDefinitionSource
 MethodDefinitionSource MethodSecurityInterceptor.getObjectDefinitionSource()
           
 

Methods in org.springframework.security.intercept.method.aopalliance with parameters of type MethodDefinitionSource
 void MethodSecurityInterceptor.setObjectDefinitionSource(MethodDefinitionSource newSource)
           
 

Constructors in org.springframework.security.intercept.method.aopalliance with parameters of type MethodDefinitionSource
MethodDefinitionSourceAdvisor(String adviceBeanName, MethodDefinitionSource attributeSource)
          Alternative constructor for situations where we want the advisor decoupled from the advice.
 

Uses of MethodDefinitionSource in org.springframework.security.intercept.method.aspectj
 

Methods in org.springframework.security.intercept.method.aspectj that return MethodDefinitionSource
 MethodDefinitionSource AspectJSecurityInterceptor.getObjectDefinitionSource()
           
 MethodDefinitionSource AspectJAnnotationSecurityInterceptor.getObjectDefinitionSource()
           
 

Methods in org.springframework.security.intercept.method.aspectj with parameters of type MethodDefinitionSource
 void AspectJSecurityInterceptor.setObjectDefinitionSource(MethodDefinitionSource newSource)
           
 void AspectJAnnotationSecurityInterceptor.setObjectDefinitionSource(MethodDefinitionSource newSource)
           
 


Spring Security Framework

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