Uses of Interface
org.craftercms.security.processors.RequestSecurityProcessor
Packages that use RequestSecurityProcessor
-
Uses of RequestSecurityProcessor in org.craftercms.security.processors.impl
Classes in org.craftercms.security.processors.impl that implement RequestSecurityProcessorModifier and TypeClassDescriptionclassRequestSecurityProcessorimplementation that creates a wrapper so that the ticket and profile last update cookies are added to the response, just before it is sent to the client.classRequestSecurityProcessorthat auto logins a user through the headers provided by the Apache mod_auth_mellon SAML authentication module.classObtains and sets the authentication for the current request.classProcesses login requests.classProcesses logout requests.classRequestSecurityProcessorthat executes auto login when a valid remember me cookie is found in the request and there's no authentication present yet.classRequestSecurityProcessorthat returns the current authentication to the client.classUsesRequestCacheto reconstitute a previously saved request (if there's one).classHandles certain security exceptions: If it's anAuthenticationRequiredException, theAuthenticationRequiredHandleris used. If it's anAccessDeniedException, and the user is anonymous, theAuthenticationRequiredHandleris used.classProcessor that checks if the current user has permission to access the current request URL.Constructor parameters in org.craftercms.security.processors.impl with type arguments of type RequestSecurityProcessorModifierConstructorDescriptionRequestSecurityProcessorChainImpl(Iterator<RequestSecurityProcessor> processorIterator) Default constructor -
Uses of RequestSecurityProcessor in org.craftercms.security.servlet.filters
Fields in org.craftercms.security.servlet.filters with type parameters of type RequestSecurityProcessorModifier and TypeFieldDescriptionprotected List<RequestSecurityProcessor>RequestSecurityFilter.securityProcessorsMethods in org.craftercms.security.servlet.filters that return RequestSecurityProcessorModifier and TypeMethodDescriptionprotected RequestSecurityProcessorRequestSecurityFilter.getLastProcessorInChain(javax.servlet.FilterChain chain) Returns the last processor of the chain, which should actually call theFilterChain.Method parameters in org.craftercms.security.servlet.filters with type arguments of type RequestSecurityProcessorModifier and TypeMethodDescriptionvoidRequestSecurityFilter.setSecurityProcessors(List<RequestSecurityProcessor> securityProcessors) Sets the chain ofRequestSecurityProcessor.