public class UifControllerHelper extends Object
Created to avoid duplication of the methods used by the UifHandlerExceptionResolver
Modifier and Type | Method and Description |
---|---|
static org.springframework.web.servlet.ModelAndView |
getUIFModelAndView(UifFormBase form,
String pageId)
Configures the
ModelAndView instance containing the form
data and pointing to the UIF generic spring view |
static String |
getViewIdFromRequest(javax.servlet.http.HttpServletRequest request)
Attempts to resolve a view id from the given request
|
protected static ViewService |
getViewService() |
static void |
invokeViewLifecycle(javax.servlet.http.HttpServletRequest request,
UifFormBase form)
Prepares the
View instance contained on the form for rendering. |
static void |
prepareView(javax.servlet.http.HttpServletRequest request,
org.springframework.web.servlet.ModelAndView modelAndView)
After the controller logic is executed, the form is placed into session and the corresponding view
is prepared for rendering.
|
public static String getViewIdFromRequest(javax.servlet.http.HttpServletRequest request)
First an attempt will be made to find the view id as a request parameter. If no such request parameter is found, the request will be looked at for view type information and a call will be made to the view service to find the view id by type
If a view id is found it is stuck in the request as an attribute (under the key
UifParameters.VIEW_ID
) for subsequent retrieval
request
- instance to resolve view id forpublic static org.springframework.web.servlet.ModelAndView getUIFModelAndView(UifFormBase form, String pageId)
ModelAndView
instance containing the form
data and pointing to the UIF generic spring viewform
- - Form instance containing the model datapageId
- - Id of the page within the view that should be rendered, can
be left blank in which the current or default page is renderedpublic static void prepareView(javax.servlet.http.HttpServletRequest request, org.springframework.web.servlet.ModelAndView modelAndView)
request
- servlet requestmodelAndView
- model and viewpublic static void invokeViewLifecycle(javax.servlet.http.HttpServletRequest request, UifFormBase form)
View
instance contained on the form for rendering.request
- servlet requestform
- form instance containing the data and view instanceprotected static ViewService getViewService()
Copyright © 2005–2014 The Kuali Foundation. All rights reserved.