Uses of Interface
org.springframework.security.core.context.SecurityContext

Packages that use SecurityContext
org.springframework.security.core.context Classes related to the establishment of a security context for the duration of a request (such as an HTTP or RMI invocation). 
org.springframework.security.core.session Session registry and other related classes. 
org.springframework.security.web.context Classes which are responsible for maintaining the security context between HTTP requests. 
org.springframework.security.web.session Session management filters, HttpSession events and publisher classes. 
 

Uses of SecurityContext in org.springframework.security.core.context
 

Classes in org.springframework.security.core.context that implement SecurityContext
 class SecurityContextImpl
          Base implementation of SecurityContext.
 

Methods in org.springframework.security.core.context that return SecurityContext
 SecurityContext SecurityContextHolderStrategy.createEmptyContext()
          Creates a new, empty context implementation, for use by SecurityContextRepository implementations, when creating a new context for the first time.
static SecurityContext SecurityContextHolder.createEmptyContext()
          Delegates the creation of a new, empty context to the configured strategy.
 SecurityContext SecurityContextHolderStrategy.getContext()
          Obtains the current context.
static SecurityContext SecurityContextHolder.getContext()
          Obtain the current SecurityContext.
 

Methods in org.springframework.security.core.context with parameters of type SecurityContext
 void SecurityContextHolderStrategy.setContext(SecurityContext context)
          Sets the current context.
static void SecurityContextHolder.setContext(SecurityContext context)
          Associates a new SecurityContext with the current thread of execution.
 

Uses of SecurityContext in org.springframework.security.core.session
 

Methods in org.springframework.security.core.session that return SecurityContext
abstract  SecurityContext SessionDestroyedEvent.getSecurityContext()
          Provides the SecurityContext under which the session was running.
 

Uses of SecurityContext in org.springframework.security.web.context
 

Methods in org.springframework.security.web.context that return SecurityContext
 SecurityContext SecurityContextRepository.loadContext(HttpRequestResponseHolder requestResponseHolder)
          Obtains the security context for the supplied request.
 SecurityContext HttpSessionSecurityContextRepository.loadContext(HttpRequestResponseHolder requestResponseHolder)
          Gets the security context for the current request (if available) and returns it.
 

Methods in org.springframework.security.web.context that return types with arguments of type SecurityContext
protected  Class<? extends SecurityContext> HttpSessionContextIntegrationFilter.getContextClass()
          Deprecated.  
 

Methods in org.springframework.security.web.context with parameters of type SecurityContext
 void SecurityContextRepository.saveContext(SecurityContext context, HttpServletRequest request, HttpServletResponse response)
          Stores the security context on completion of a request.
 void HttpSessionSecurityContextRepository.saveContext(SecurityContext context, HttpServletRequest request, HttpServletResponse response)
           
 

Uses of SecurityContext in org.springframework.security.web.session
 

Methods in org.springframework.security.web.session that return SecurityContext
 SecurityContext HttpSessionDestroyedEvent.getSecurityContext()
           
 



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