Uses of Interface
org.craftercms.security.processors.RequestSecurityProcessor
-
Packages that use RequestSecurityProcessor Package Description org.craftercms.security.processors.impl org.craftercms.security.servlet.filters -
-
Uses of RequestSecurityProcessor in org.craftercms.security.processors.impl
Classes in org.craftercms.security.processors.impl that implement RequestSecurityProcessor Modifier and Type Class Description classAddSecurityCookiesProcessorRequestSecurityProcessorimplementation 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.classAuthenticationHeadersLoginProcessorRequestSecurityProcessorthat auto logins a user through the headers provided by the Apache mod_auth_mellon SAML authentication module.classCurrentAuthenticationResolvingProcessorObtains and sets the authentication for the current request.classLoginProcessorProcesses login requests.classLogoutProcessorProcesses logout requests.classRememberMeAutoLoginProcessorRequestSecurityProcessorthat executes auto login when a valid remember me cookie is found in the request and there's no authentication present yet.classReturnCurrentAuthenticationProcessorRequestSecurityProcessorthat returns the current authentication to the client.classSavedRequestAwareProcessorUsesRequestCacheto reconstitute a previously saved request (if there's one).classSecurityExceptionProcessorHandles certain security exceptions:classUrlAccessRestrictionCheckingProcessorProcessor 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 RequestSecurityProcessor Constructor Description RequestSecurityProcessorChainImpl(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 RequestSecurityProcessor Modifier and Type Field Description protected List<RequestSecurityProcessor>RequestSecurityFilter. securityProcessorsMethods in org.craftercms.security.servlet.filters that return RequestSecurityProcessor Modifier and Type Method Description protected 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 RequestSecurityProcessor Modifier and Type Method Description voidRequestSecurityFilter. setSecurityProcessors(List<RequestSecurityProcessor> securityProcessors)Sets the chain ofRequestSecurityProcessor.
-