java.lang.Object
org.apache.struts.action.ActionForm
org.acs.damsel.client.add.AddSchemaForm
- All Implemented Interfaces:
- java.io.Serializable
- public class AddSchemaForm
- extends org.apache.struts.action.ActionForm
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
schemaName
private java.lang.String schemaName
schemaTagsList
private java.lang.String schemaTagsList
whichButtonSelected
private java.lang.String whichButtonSelected
tagName
private java.lang.String tagName
schemaSelect
private java.lang.String schemaSelect
permissionID
private java.lang.String permissionID
groupDelete
private boolean groupDelete
groupRead
private boolean groupRead
groupWrite
private boolean groupWrite
othersDelete
private boolean othersDelete
othersRead
private boolean othersRead
othersWrite
private boolean othersWrite
ownerDelete
private boolean ownerDelete
ownerRead
private boolean ownerRead
ownerWrite
private boolean ownerWrite
groupName
private java.lang.String groupName
ownerName
private java.lang.String ownerName
AddSchemaForm
public AddSchemaForm()
getSchemaName
public java.lang.String getSchemaName()
setSchemaName
public void setSchemaName(java.lang.String schemaName)
getSchemaTagsList
public java.lang.String getSchemaTagsList()
setSchemaTagsList
public void setSchemaTagsList(java.lang.String schemaTagsList)
getWhichButtonSelected
public java.lang.String getWhichButtonSelected()
setWhichButtonSelected
public void setWhichButtonSelected(java.lang.String whichButtonSelected)
validate
public org.apache.struts.action.ActionErrors validate(org.apache.struts.action.ActionMapping actionMapping,
javax.servlet.http.HttpServletRequest httpServletRequest)
- Description copied from class:
org.apache.struts.action.ActionForm
Validate the properties that have been set for this HTTP request,
and return an ActionErrors object that encapsulates any
validation errors that have been found. If no errors are found,
return null or an ActionErrors object with
no recorded error messages.
The default implementation performs no validation and returns
null. Subclasses must override this method to provide
any validation they wish to perform.
reset
public void reset(org.apache.struts.action.ActionMapping actionMapping,
javax.servlet.http.HttpServletRequest httpServletRequest)
- 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.
getTagName
public java.lang.String getTagName()
setTagName
public void setTagName(java.lang.String tagName)
getGroupName
public java.lang.String getGroupName()
setGroupName
public void setGroupName(java.lang.String groupName)
getOwnerName
public java.lang.String getOwnerName()
setOwnerName
public void setOwnerName(java.lang.String ownerName)
getSchemaSelect
public java.lang.String getSchemaSelect()
setSchemaSelect
public void setSchemaSelect(java.lang.String schemaSelect)
getPermissionID
public java.lang.String getPermissionID()
setPermissionID
public void setPermissionID(java.lang.String permissionID)
isGroupRead
public boolean isGroupRead()
setGroupRead
public void setGroupRead(boolean groupRead)
isGroupWrite
public boolean isGroupWrite()
setGroupWrite
public void setGroupWrite(boolean groupWrite)
isOthersDelete
public boolean isOthersDelete()
setOthersDelete
public void setOthersDelete(boolean othersDelete)
isOthersRead
public boolean isOthersRead()
setOthersRead
public void setOthersRead(boolean othersRead)
isOthersWrite
public boolean isOthersWrite()
setOthersWrite
public void setOthersWrite(boolean othersWrite)
isOwnerDelete
public boolean isOwnerDelete()
setOwnerDelete
public void setOwnerDelete(boolean ownerDelete)
isOwnerRead
public boolean isOwnerRead()
setOwnerRead
public void setOwnerRead(boolean ownerRead)
isOwnerWrite
public boolean isOwnerWrite()
setOwnerWrite
public void setOwnerWrite(boolean ownerWrite)
isGroupDelete
public boolean isGroupDelete()
setGroupDelete
public void setGroupDelete(boolean groupDelete)