MyPersonalizerRequestProcessor.java | Class | This is a sublcass of Jakarta Struts' RequestProcessor, which
function is to manage controller requests in an MVC architecture.
The functionality it adds is processing filters: before each request
is processed (by super.processActionPerform), MyPersonalizerRequestProcessor
applies a chain of filters to the request, so that functionality like
session managing, cookie checking or requiring authentication for
actions can be enabled through filters.
The chain of filters that will be applied is defined with configuration
parameters, and it is read when the class MyPersonalizerRequestProcessor
is first loaded. |