org.springframework.security.access.intercept.aopalliance
Class MethodSecurityMetadataSourceAdvisor

java.lang.Object
  extended by org.springframework.aop.support.AbstractPointcutAdvisor
      extended by org.springframework.security.access.intercept.aopalliance.MethodSecurityMetadataSourceAdvisor
All Implemented Interfaces:
Serializable, Advisor, PointcutAdvisor, BeanFactoryAware, Ordered

public class MethodSecurityMetadataSourceAdvisor
extends AbstractPointcutAdvisor
implements BeanFactoryAware

Advisor driven by a MethodSecurityMetadataSource, used to exclude a MethodSecurityInterceptor from public (non-secure) methods.

Because the AOP framework caches advice calculations, this is normally faster than just letting the MethodSecurityInterceptor run and find out itself that it has no work to do.

This class also allows the use of Spring's DefaultAdvisorAutoProxyCreator, which makes configuration easier than setup a ProxyFactoryBean for each object requiring security. Note that autoproxying is not supported for BeanFactory implementations, as post-processing is automatic only for application contexts.

Based on Spring's TransactionAttributeSourceAdvisor.

See Also:
Serialized Form

Field Summary
 
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
 
Constructor Summary
MethodSecurityMetadataSourceAdvisor(String adviceBeanName, MethodSecurityMetadataSource attributeSource, String attributeSourceBeanName)
          Alternative constructor for situations where we want the advisor decoupled from the advice.
 
Method Summary
 org.aopalliance.aop.Advice getAdvice()
           
 Pointcut getPointcut()
           
 void setBeanFactory(BeanFactory beanFactory)
           
 
Methods inherited from class org.springframework.aop.support.AbstractPointcutAdvisor
equals, getOrder, hashCode, isPerInstance, setOrder
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MethodSecurityMetadataSourceAdvisor

public MethodSecurityMetadataSourceAdvisor(String adviceBeanName,
                                           MethodSecurityMetadataSource attributeSource,
                                           String attributeSourceBeanName)
Alternative constructor for situations where we want the advisor decoupled from the advice. Instead the advice bean name should be set. This prevents eager instantiation of the interceptor (and hence the AuthenticationManager). See SEC-773, for example. The metadataSourceBeanName is used rather than a direct reference to support serialization via a bean factory lookup.

Parameters:
adviceBeanName - name of the MethodSecurityInterceptor bean
attributeSource - the SecurityMetadataSource (should be the same as the one used on the interceptor)
attributeSourceBeanName - the bean name of the attributeSource (required for serialization)
Method Detail

getPointcut

public Pointcut getPointcut()
Specified by:
getPointcut in interface PointcutAdvisor

getAdvice

public org.aopalliance.aop.Advice getAdvice()
Specified by:
getAdvice in interface Advisor

setBeanFactory

public void setBeanFactory(BeanFactory beanFactory)
                    throws BeansException
Specified by:
setBeanFactory in interface BeanFactoryAware
Throws:
BeansException