Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Package org.mentawai.core

Interface Summary
Action Describes a Mentawai action, the central idea of the framework architecture.
Consequence Defines a Mentawai consequence.
Context Describes the behavior of a Mentawai context.
Filter A filter intercepts an action so it can modify its input and output, before and after the action is executed.
Input Defines the behavior of an action input.
Output Defines the behavior of an action output.
 

Class Summary
ActionConfig An ActionConfig links together an action implementation, an action name or alias, action results and action consequences.
AjaxConsequence UNDER CONSTRUCTION !!!
ApplicationContext Encapsulates a ServletContext as a context for Mentawai actions.
ApplicationManager The central abstract base manager which controls actions, filters, locales and data lists.
BaseAction The abstract base implementation of a Mentawai action.
Chain An action chaining consequence.
ContextMap A simple Context that can be used for testing.
Controller The Mentawai central controller.
Forward A forward web consequence.
InputMap A simple Input that can be used for testing.
InputRequest Encapsulates a HttpServletRequest as an Input for Mentawai actions.
InvocationChain When an action is executed, a chain of filters is created.
NullConsequence A consequence that does nothing.
OutputMap A simple Output implementation backed up by a java.util.HashMap.
OutputResponse A simple Output implementation backed up by a java.util.HashMap.
Redirect A redirect web consequence.
SessionContext Encapsulates a HttpSession as a context for Mentawai actions.
SingleInstanceActionConfig Use this action config if you want your action to be a single instance for all requests, in other words, you don't want to create a new instance of your action for every request.
SingleInstanceBaseAction This is the base class for single instance actions, in other words, those actions that will be instantiated only once and shared among all requests.
StreamConsequence A web-based consequence that gets a ready-to-use input stream from the output of the action, get the contents from that input stream and flush them to the servlet output stream.
 

Exception Summary
ActionException An exception that can happen when an action is executed.
ConsequenceException An exception that can happen when a consequence is executed.
FilterException An exception that can happen when a filter is executed.
InputException An exception than can happen when trying to access an action input parameter.