java.lang.Object
org.apache.struts.action.ActionForm
ru.gammalabs.ice.presentation.web.partition.ListPartitionsForm
- All Implemented Interfaces:
- java.io.Serializable
- public class ListPartitionsForm
- extends org.apache.struts.action.ActionForm
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
NEXT_LEVEL
public static final java.lang.String NEXT_LEVEL
- See Also:
- Constant Field Values
partitionId
private java.lang.Long partitionId
partitionIds
private java.util.List partitionIds
partitionNames
private java.util.List partitionNames
ListPartitionsForm
public ListPartitionsForm()
getPartitionId
public java.lang.Long getPartitionId()
setPartitionId
public void setPartitionId(java.lang.Long partitionId)
getPartitionIds
public java.util.List getPartitionIds()
setPartitionIds
public void setPartitionIds(java.util.List partitionIds)
getPartitionNames
public java.util.List getPartitionNames()
setPartitionNames
public void setPartitionNames(java.util.List partitionNames)
reset
public void reset(org.apache.struts.action.ActionMapping mapping,
javax.servlet.http.HttpServletRequest request)
- Description copied from class:
org.apache.struts.action.ActionForm
Reset bean properties to their default state, as needed. This method is
called before the properties are repopulated by the controller.
The default implementation does nothing. In practice, the only properties
that need to be reset are those which represent checkboxes on a session-scoped
form. Otherwise, properties can be given initial values where the field is
declared.
If the form is stored in session-scope so that values can be collected
over multiple requests (a "wizard"), you must be very careful of which
properties, if any, are reset. As mentioned, session-scope checkboxes
must be reset to false for any page where this property is set. This is
because the client does not submit a checkbox value when it is clear (false).
If a session-scoped checkbox is not proactively reset, it can never be set
to false.
This method is not the appropriate place to initialize
form value for an "update" type page (this should be done in a setup Action).
You mainly need to worry about setting checkbox values to false; most of the
time you can leave this method unimplemented.