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 class
AddSecurityCookiesProcessor
RequestSecurityProcessor
implementation 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.class
AuthenticationHeadersLoginProcessor
RequestSecurityProcessor
that auto logins a user through the headers provided by the Apache mod_auth_mellon SAML authentication module.class
CurrentAuthenticationResolvingProcessor
Obtains and sets the authentication for the current request.class
LoginProcessor
Processes login requests.class
LogoutProcessor
Processes logout requests.class
RememberMeAutoLoginProcessor
RequestSecurityProcessor
that executes auto login when a valid remember me cookie is found in the request and there's no authentication present yet.class
ReturnCurrentAuthenticationProcessor
RequestSecurityProcessor
that returns the current authentication to the client.class
SavedRequestAwareProcessor
UsesRequestCache
to reconstitute a previously saved request (if there's one).class
SecurityExceptionProcessor
Handles certain security exceptions:class
UrlAccessRestrictionCheckingProcessor
Processor 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. securityProcessors
Methods in org.craftercms.security.servlet.filters that return RequestSecurityProcessor Modifier and Type Method Description protected RequestSecurityProcessor
RequestSecurityFilter. 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 void
RequestSecurityFilter. setSecurityProcessors(List<RequestSecurityProcessor> securityProcessors)
Sets the chain ofRequestSecurityProcessor
.
-