![]() |
Documentación GVHIDRA 3.1.5
|
Métodos públicos | |
perform ($actionMapping, $actionForm) |
An Action is an adapter between the contents of an incoming HTTP request and the corresponding business logic that should be executed to process this request. The ActionController will select an appropriate Action for each request, create an instance (if necessary), and call the perform() method.
Definición en la línea 11 del archivo Action.php.
perform | ( | $ | actionMapping, |
$ | actionForm | ||
) |
Process the specified HTTP request, and create the corresponding HTTP response (or forward to another web component that will create it). Return an ActionForward instance describing where and how control should be forwarded, or null if the response has already been completed. Subclasses must override this method to provide any business logic they wish to perform.
public
ActionMapping | $actionMapping | |
ActionForm | $actionForm |
Reimplementado en gvHidraForm, IgepAccionesGenericas, gvHidraTreePattern y gvHidraMainWindow.
Definición en la línea 26 del archivo Action.php.
{}