org.springframework.security.access.intercept
Class InterceptorStatusToken
java.lang.Object
org.springframework.security.access.intercept.InterceptorStatusToken
public class InterceptorStatusToken
- extends Object
A return object received by AbstractSecurityInterceptor
subclasses.
This class reflects the status of the security interception, so that the final call to
AbstractSecurityInterceptor.afterInvocation(InterceptorStatusToken, Object)
can tidy up correctly.
- Version:
- $Id: InterceptorStatusToken.java 3927 2009-10-06 19:46:44Z ltaylor $
- Author:
- Ben Alex
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
InterceptorStatusToken
public InterceptorStatusToken(Authentication authentication,
boolean contextHolderRefreshRequired,
Collection<ConfigAttribute> attributes,
Object secureObject)
getAttributes
public Collection<ConfigAttribute> getAttributes()
getAuthentication
public Authentication getAuthentication()
getSecureObject
public Object getSecureObject()
isContextHolderRefreshRequired
public boolean isContextHolderRefreshRequired()
Copyright © 2004-2009 SpringSource, Inc. All Rights Reserved.