Class InterceptorStatusToken

java.lang.Object
org.springframework.security.access.intercept.InterceptorStatusToken

@Deprecated public class InterceptorStatusToken extends Object
Deprecated.
Use delegation with AuthorizationManager
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.

See Also:
  • AuthorizationManagerBeforeMethodInterceptor
  • AuthorizationManagerAfterMethodInterceptor
  • Constructor Details

    • InterceptorStatusToken

      public InterceptorStatusToken(org.springframework.security.core.context.SecurityContext securityContext, boolean contextHolderRefreshRequired, Collection<ConfigAttribute> attributes, Object secureObject)
      Deprecated.
  • Method Details

    • getAttributes

      public Collection<ConfigAttribute> getAttributes()
      Deprecated.
    • getSecurityContext

      public org.springframework.security.core.context.SecurityContext getSecurityContext()
      Deprecated.
    • getSecureObject

      public Object getSecureObject()
      Deprecated.
    • isContextHolderRefreshRequired

      public boolean isContextHolderRefreshRequired()
      Deprecated.