Object | --ActionForward
Located in File: Program_Root/ActionForward.php
The ActionForward class represents a destination to which the ActionController might be directed to forward or redirect to, as a result of the processing activities of an Action class. Instances of this class may be created dynamically as necessary, or configured in association with an ActionMapping instance for named lookup of potentially multiple destinations for a particular ActionMapping instance. An ActionForward has the following minimal set of properties. Additional properties can be provided as needed by subclasses.
phrame$Id: ActionForward.html,v 1.1.1.1 2002/11/19 16:47:22 arcano Exp $Arnold Cano| Class Variable Summary |
$_name
Default Value:
|
$_path
Default Value:
|
$_redirect
Default Value:
|
| Inherited Class Variable Summary |
| Inherited Method Summary | ||||||||
Inherited From Class Object
|
| Variable Detail |
| Method Detail |
void constructor ActionForward ( $name, $forward )
Create an ActionForward with the specified values.
- string $name: - array $forward: publicstring getName ( )
Get the name of the ActionForward.
publicstring getPath ( )
Get the path of the ActionForward.
publicinteger getRedirect ( )
Get the redirect flag of the ActionForward.
publicvoid setName ( $name )
Set the name of the ActionForward.
- string $name: publicvoid setPath ( $path )
Set the path of the ActionForward.
- string $path: publicvoid setRedirect ( $redirect )
Set the redirect flag of the ActionForward.
- integer $redirect: public