|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.kuali.rice.kns.web.spring.form.UifFormBase
public class UifFormBase
Base form class for views within the KRAD User Interface Framework
Holds properties necessary to determine the View
instance that
will be used to render the UI
Field Summary | |
---|---|
protected Map<String,String> |
actionParameters
|
protected org.springframework.web.multipart.MultipartFile |
attachmentFile
|
protected boolean |
defaultsApplied
|
protected String |
focusId
|
private History |
formHistory
|
protected String |
formKey
|
protected String |
formPostUrl
|
protected String |
homeLocation
|
protected String |
hubFormKey
|
protected String |
hubLocation
|
protected String |
jumpToId
|
protected String |
jumpToName
|
protected String |
methodToCall
|
protected Map<String,Object> |
newCollectionLines
|
protected String |
pageId
|
protected View |
previousView
|
protected boolean |
renderFullView
|
protected String |
returnFormKey
|
protected String |
returnLocation
|
private static long |
serialVersionUID
|
protected boolean |
validateDirty
|
protected View |
view
|
protected String |
viewId
|
protected String |
viewName
|
protected Map<String,String> |
viewRequestParameters
|
protected String |
viewTypeName
|
Constructor Summary | |
---|---|
UifFormBase()
|
Method Summary | |
---|---|
protected String |
generateFormKey()
Creates the unique id used to store this "conversation" in the session. |
String |
getActionParamaterValue(String actionParameterName)
Retrieves the value for the given action parameter, or empty string if not found |
Map<String,String> |
getActionParameters()
Map of parameters sent for the invoked action |
Properties |
getActionParametersAsProperties()
Returns the action parameters map as a Properties instance |
org.springframework.web.multipart.MultipartFile |
getAttachmentFile()
Holder for files that are attached through the view |
String |
getFocusId()
Field to place focus on when the page loads An empty focusId will result in focusing on the first visible input element by default. |
History |
getFormHistory()
|
String |
getFormKey()
Key string that identifies the form instance in session storage |
String |
getFormPostUrl()
|
String |
getHomeLocation()
|
String |
getHubFormKey()
|
String |
getHubLocation()
|
String |
getJumpToId()
The jumpToId for this form, the element with this id will be jumped to automatically when the form is loaded in the view. |
String |
getJumpToName()
The jumpToName for this form, the element with this name will be jumped to automatically when the form is loaded in the view. |
String |
getMethodToCall()
Identifies the controller method that should be invoked to fulfill a request. |
Map<String,Object> |
getNewCollectionLines()
Holds instances for collection add lines. |
String |
getPageId()
Id for the current page being displayed within the view |
View |
getPreviousView()
View instance for the page that made a request. |
String |
getReturnFormKey()
|
String |
getReturnLocation()
|
View |
getView()
View instance associated with the form. |
String |
getViewId()
Unique Id for the View instance. |
String |
getViewName()
Name for the View instance. |
Map<String,String> |
getViewRequestParameters()
Map of parameters that was used to configured the View . |
protected ViewService |
getViewService()
Instance of the ViewService that can be used to retrieve
View instances |
String |
getViewTypeName()
Name for the type of view being requested. |
boolean |
isDefaultsApplied()
Indicates whether the form has had default values from the configured View applied. |
boolean |
isRenderFullView()
|
boolean |
isValidateDirty()
|
void |
postBind(javax.servlet.http.HttpServletRequest request)
Called after Spring binds the request to the form and before the controller method is invoked. |
void |
setActionParameters(Map<String,String> actionParameters)
Setter for the action parameters map |
void |
setAttachmentFile(org.springframework.web.multipart.MultipartFile attachmentFile)
Setter for the form's attachment file |
void |
setDefaultsApplied(boolean defaultsApplied)
Setter for the defaults applied indicator |
void |
setFocusId(String focusId)
|
void |
setFormHistory(History history)
History parameter representing the History of views that have come before the viewing of the current view. |
void |
setFormKey(String formKey)
Setter for the form's session key |
void |
setFormPostUrl(String formPostUrl)
|
void |
setHomeLocation(String homeLocation)
|
void |
setHubFormKey(String hubFormKey)
|
void |
setHubLocation(String hubLocation)
|
void |
setJumpToId(String jumpToId)
|
void |
setJumpToName(String jumpToName)
|
void |
setMethodToCall(String methodToCall)
Setter for the method to call |
void |
setNewCollectionLines(Map<String,Object> newCollectionLines)
Setter for the new collection lines Map |
void |
setPageId(String pageId)
Setter for the current page id |
void |
setPreviousView(View previousView)
Setter for the previous view instance |
void |
setRenderFullView(boolean renderFullView)
|
void |
setReturnFormKey(String returnFormKey)
|
void |
setReturnLocation(String returnLocation)
|
void |
setValidateDirty(boolean validateDirty)
Setter for dirty validation. |
void |
setView(View view)
Setter for the view instance |
void |
setViewId(String viewId)
Setter for the unique view id |
void |
setViewName(String viewName)
Setter for the view name |
void |
setViewRequestParameters(Map<String,String> viewRequestParameters)
Setter for the view's request parameter map |
void |
setViewTypeName(String viewTypeName)
Setter for the view type name |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private static final long serialVersionUID
private History formHistory
protected String viewId
protected String viewName
protected String viewTypeName
protected String pageId
protected String methodToCall
protected String formKey
protected String jumpToId
protected String jumpToName
protected String focusId
protected String formPostUrl
protected boolean defaultsApplied
protected View view
protected View previousView
protected Map<String,String> viewRequestParameters
protected Map<String,Object> newCollectionLines
protected Map<String,String> actionParameters
protected org.springframework.web.multipart.MultipartFile attachmentFile
protected String returnLocation
protected String returnFormKey
protected String hubLocation
protected String hubFormKey
protected String homeLocation
protected boolean renderFullView
protected boolean validateDirty
Constructor Detail |
---|
public UifFormBase()
Method Detail |
---|
protected String generateFormKey()
public void postBind(javax.servlet.http.HttpServletRequest request)
request
- - request object containing the query parameterspublic String getViewId()
View
instance. This is specified for a
view in its definition by setting the 'id' property.
public void setViewId(String viewId)
viewId
- public String getViewName()
View
instance. This is specified for a view in
its definition by setting the 'id' property. The name is not necessary
unique and cannot be used by itself to retrieve a view. Typically it is
used with other parameters to identify a view with a certain type (view
type)
public void setViewName(String viewName)
viewName
- public String getViewTypeName()
View
instances by request parameters (not necessary the
unique id)
public void setViewTypeName(String viewTypeName)
viewTypeName
- public String getPageId()
public void setPageId(String pageId)
pageId
- public String getFormPostUrl()
public void setFormPostUrl(String formPostUrl)
public String getReturnLocation()
public void setReturnLocation(String returnLocation)
public String getReturnFormKey()
public void setReturnFormKey(String returnFormKey)
public String getHubLocation()
public void setHubLocation(String hubLocation)
public String getHubFormKey()
public void setHubFormKey(String hubFormKey)
public String getHomeLocation()
public void setHomeLocation(String homeLocation)
public String getMethodToCall()
RequestMapping
annotation for the controller method
public void setMethodToCall(String methodToCall)
methodToCall
- public Map<String,String> getViewRequestParameters()
View
.
Maintained on the form to rebuild the view on posts and session timeout
org.kuali.rice.kns.uif.container.View.getViewRequestParameters()
public void setViewRequestParameters(Map<String,String> viewRequestParameters)
viewRequestParameters
- public Map<String,Object> getNewCollectionLines()
public void setNewCollectionLines(Map<String,Object> newCollectionLines)
newCollectionLines
- public Map<String,String> getActionParameters()
Many times besides just setting the method to call actions need to send
additional parameters. For instance the method being called might do a
redirect, in which case the action needs to send parameters for the
redirect URL. An example of this is redirecting to a Lookup
view. In some cases the parameters that need to be sent conflict with
properties already on the form, and putting all the action parameters as
form properties would grow massive (in addition to adds an additional
step from the XML config). So this general map solves those issues.
public Properties getActionParametersAsProperties()
Properties
instance
public void setActionParameters(Map<String,String> actionParameters)
actionParameters
- public String getActionParamaterValue(String actionParameterName)
actionParameterName
- - name of the action parameter to retrieve value for
public String getFormKey()
When the view is posted, the previous form instance is retrieved and then populated from the request parameters. This key string is retrieve the session form from the session service
public void setFormKey(String formKey)
formKey
- public boolean isDefaultsApplied()
View
applied. This happens only once for each form instance
public void setDefaultsApplied(boolean defaultsApplied)
defaultsApplied
- public org.springframework.web.multipart.MultipartFile getAttachmentFile()
public void setAttachmentFile(org.springframework.web.multipart.MultipartFile attachmentFile)
attachmentFile
- public boolean isRenderFullView()
public void setRenderFullView(boolean renderFullView)
renderFullView
- public View getView()
public void setView(View view)
view
- public View getPreviousView()
public void setPreviousView(View previousView)
previousView
- protected ViewService getViewService()
ViewService
that can be used to retrieve
View
instances
public String getJumpToId()
public void setJumpToId(String jumpToId)
jumpToId
- the jumpToId to setpublic String getJumpToName()
public void setJumpToName(String jumpToName)
jumpToName
- the jumpToName to setpublic String getFocusId()
public void setFocusId(String focusId)
focusId
- the focusId to setpublic void setFormHistory(History history)
history
- the history to setpublic History getFormHistory()
public boolean isValidateDirty()
public void setValidateDirty(boolean validateDirty)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |