| java.lang.Object org.apache.struts.action.ActionForm org.apache.struts.webapp.example.SubscriptionForm
SubscriptionForm | final public class SubscriptionForm extends ActionForm (Code) | | Form bean for the user profile page. This form has the following fields,
with default values in square brackets:
- action - The maintenance action we are performing (Create, Delete,
or Edit).
- host - The mail host for this subscription. [REQUIRED]
- password - The password for this subscription. [REQUIRED]
- type - The subscription type (imap,pop3)
for this subscription. [REQUIRED]
- username - The username of this subscription. [REQUIRED]
author: Craig R. McClanahan version: $Rev: 471754 $ $Date: 2006-11-06 08:55:09 -0600 (Mon, 06 Nov 2006) $ |
getAction | public String getAction()(Code) | | Return the maintenance action.
|
getAutoConnect | public boolean getAutoConnect()(Code) | | Return the auto-connect flag.
|
getPassword | public String getPassword()(Code) | | Return the password.
|
getType | public String getType()(Code) | | Return the subscription type.
|
getUsername | public String getUsername()(Code) | | Return the username.
|
reset | public void reset(ActionMapping mapping, HttpServletRequest request)(Code) | | Reset all properties to their default values.
Parameters: mapping - The mapping used to select this instance Parameters: request - The servlet request we are processing |
setAction | public void setAction(String action)(Code) | | Set the maintenance action.
Parameters: action - The new maintenance action. |
setAutoConnect | public void setAutoConnect(boolean autoConnect)(Code) | | Set the auto-connect flag.
Parameters: autoConnect - The new auto-connect flag |
setHost | public void setHost(String host)(Code) | | Set the host name.
Parameters: host - The host name |
setPassword | public void setPassword(String password)(Code) | | Set the password.
Parameters: password - The new password |
setType | public void setType(String type)(Code) | | Set the subscription type.
Parameters: type - The subscription type |
setUsername | public void setUsername(String username)(Code) | | Set the username.
Parameters: username - The new username |
toString | public String toString()(Code) | | Return a string representation of this form bean.
|
validate | public ActionErrors validate(ActionMapping mapping, HttpServletRequest request)(Code) | | Validate the properties that have been set from this HTTP request,
and return an ActionMessages object that encapsulates any
validation errors that have been found. If no errors are found, return
null or an ActionMessages object with no
recorded error messages.
Parameters: mapping - The mapping used to select this instance Parameters: request - The servlet request we are processing |
|
|