de.odysseus.calyxo.control.misc |
|
Java Source File Name | Type | Comment |
AbstractAction.java | Class | Convenience Action base class.
Actions are the controller's ends supplied by the application developer.
An action may invoke business logic, manipulate business data or do
whatever is needed to process the request.
This implementation provides the module context and action configuration
via the
AbstractAction.getModuleContext() and
AbstractAction.getActionConfig() methods.
Subclasses may override the
AbstractAction.init() method for initialization.
Actions may produce messages indicating errors, warnings or infos during
request processing. |
BranchFilter.java | Class | Dispatch as specified.
The dispatch configuration may be specified by an anonymous <dispatch>
child (without name attribute) or via the target parameter (containing the
name of a dispatch configuration visible in the enclosing action configuration).
This class also implements the plugin interface. |
CancelFilter.java | Class | Dispatch as specified if a "cancel" parameter is present in the request.
When submitting an image button with name p , HTTP
parameters p.x and p.y will be sent.
Therefore, this filter checks for presence of p and p.x .
The dispatch configuration may be specified by an anonymous <dispatch>
child (without name attribute) or via the target parameter (containing the
name of a dispatch configuration visible in the enclosing action configuration).
If neither is given, target "cancel" is assumed.
The parameter name may be specified by filter parameter parameter .
Again, the default value is "cancel"
This class also implements the plugin interface. |
ControlAccessor.java | Class | Control accessor map. |
DynamicDispatchConfig.java | Class | |
MessageAccessor.java | Class | This accessor exports a
de.odysseus.calyxo.base.Messages object containing error, warning or info messages by delegating to
de.odysseus.calyxo.control.MessageSupport . |
NoCacheFilter.java | Class | Add headers to response to prevent browsers from caching it.
This class also implements the plugin interface. |
SimpleExceptionHandler.java | Class | This is a simple exception handler implementation, which saves an
error message and then dispatches to a specified target. |