Package org.apache.struts.config
Class PopulateEvent
java.lang.Object
org.apache.struts.config.PopulateEvent
Constants relating to the reset and population events of action forms.
- Since:
- Struts 1.4
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Specifies that population must always occur.static final String
Specifies that population occurs when the form is cancelled.static final String
Specifies that population occurs when the current executing action has been forwarded by another action.static final String
Specifies that population occurs when the current requested is part of a forwarded request.static final String
Specifies that population occurs when the current requested is part of any included request.static final String
Specifies that population must never occur.static final String
Specifies that population occurs for an ordinary client request. -
Constructor Summary
-
Method Summary
-
Field Details
-
ALL
Specifies that population must always occur. This type may not be combined with any other type.- See Also:
-
CANCEL
Specifies that population occurs when the form is cancelled.- See Also:
-
CHAIN
Specifies that population occurs when the current executing action has been forwarded by another action. It should be noted that if the chained action mapping refers to the same form bean as originating action, then the form bean is repopulated and changes made by originating action are lost.- See Also:
-
FORWARD
Specifies that population occurs when the current requested is part of a forwarded request. UnlikeCHAIN
which is limited to action-to-action behavior, the forward can be from any servlet resource.- See Also:
-
INCLUDE
Specifies that population occurs when the current requested is part of any included request.- See Also:
-
NONE
Specifies that population must never occur. This type may not be combined with any other type.- See Also:
-
REQUEST
Specifies that population occurs for an ordinary client request.- See Also:
-
-
Constructor Details
-
PopulateEvent
public PopulateEvent()
-