Spring Security Framework

org.springframework.security.intercept.method.aspectj
Class AspectJAnnotationSecurityInterceptor

java.lang.Object
  extended by org.springframework.security.intercept.AbstractSecurityInterceptor
      extended by org.springframework.security.intercept.method.aspectj.AspectJAnnotationSecurityInterceptor
All Implemented Interfaces:
InitializingBean, ApplicationEventPublisherAware, MessageSourceAware

public class AspectJAnnotationSecurityInterceptor
extends AbstractSecurityInterceptor

AspectJ interceptor that supports @Aspect notation.

Version:
$Id$
Author:
Mike Wiesner

Field Summary
 
Fields inherited from class org.springframework.security.intercept.AbstractSecurityInterceptor
logger, messages
 
Constructor Summary
AspectJAnnotationSecurityInterceptor()
           
 
Method Summary
 MethodDefinitionSource getObjectDefinitionSource()
           
 Class getSecureObjectClass()
          Indicates the type of secure objects the subclass will be presenting to the abstract parent for processing.
 Object invoke(org.aspectj.lang.JoinPoint jp, AspectJAnnotationCallback advisorProceed)
          This method should be used to enforce security on a JoinPoint.
 ObjectDefinitionSource obtainObjectDefinitionSource()
           
 void setObjectDefinitionSource(MethodDefinitionSource newSource)
           
 
Methods inherited from class org.springframework.security.intercept.AbstractSecurityInterceptor
afterInvocation, afterPropertiesSet, beforeInvocation, getAccessDecisionManager, getAfterInvocationManager, getAuthenticationManager, getRunAsManager, isAlwaysReauthenticate, isRejectPublicInvocations, isValidateConfigAttributes, setAccessDecisionManager, setAfterInvocationManager, setAlwaysReauthenticate, setApplicationEventPublisher, setAuthenticationManager, setMessageSource, setRejectPublicInvocations, setRunAsManager, setValidateConfigAttributes
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AspectJAnnotationSecurityInterceptor

public AspectJAnnotationSecurityInterceptor()
Method Detail

getObjectDefinitionSource

public MethodDefinitionSource getObjectDefinitionSource()

getSecureObjectClass

public Class getSecureObjectClass()
Description copied from class: AbstractSecurityInterceptor
Indicates the type of secure objects the subclass will be presenting to the abstract parent for processing. This is used to ensure collaborators wired to the AbstractSecurityInterceptor all support the indicated secure object class.

Specified by:
getSecureObjectClass in class AbstractSecurityInterceptor
Returns:
the type of secure object the subclass provides services for

invoke

public Object invoke(org.aspectj.lang.JoinPoint jp,
                     AspectJAnnotationCallback advisorProceed)
              throws Throwable
This method should be used to enforce security on a JoinPoint.

Parameters:
jp - The AspectJ joint point being invoked which requires a security decision
advisorProceed - the advice-defined anonymous class that implements AspectJCallback containing a simple return proceed(); statement
Returns:
The returned value from the method invocation
Throws:
Throwable

obtainObjectDefinitionSource

public ObjectDefinitionSource obtainObjectDefinitionSource()
Specified by:
obtainObjectDefinitionSource in class AbstractSecurityInterceptor

setObjectDefinitionSource

public void setObjectDefinitionSource(MethodDefinitionSource newSource)

Spring Security Framework

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