| java.lang.Object pygmy.core.AbstractHandler pygmy.handlers.DefaultChainHandler
DefaultChainHandler | public class DefaultChainHandler extends AbstractHandler implements Handler(Code) | | This is the default implementation of a chain of handlers. The .chain parameter defines the names of the
handlers in the chain, and it defines the order in which those handlers will be called. Each handler name is
seperated by either a ' ' (space) or a ',' (comma). This handler will then try to create a handler for each of
the handler names by looking at configuration property {handler-name}.class. This handler also has a .url-prefix
parameter it uses to know when this handler should pass the request to the chain.
url-prefix | The prefix to filter request urls. | None | Yes |
chain | A space or comma seperated list of the names of the handlers within the chain. | None | Yes |
class | For each of the names in the chain property, this is appended the name to find the classname to instatiate. | None | Yes |
|
|
|