static <T extends StatefulObject> T |
FormUtil.createNewFormIfNotModified(javax.servlet.http.HttpServletRequest request,
Class<T> clazz,
String customKey,
FormUtil.FormCreator<T> formCreator) |
Obtains a form bean from the session if it exists and if was modified, returns it.
|
static <T> T |
FormUtil.getOrCreateForm(javax.servlet.http.HttpServletRequest request,
Class<T> clazz,
String customKey,
FormUtil.FormCreator<T> formCreator) |
Obtains a form bean from the session if it exists or creates a new form bean and stores it in the session.
|
static <T> T |
FormUtil.getOrCreateForm(javax.servlet.http.HttpServletRequest request,
Class<T> clazz,
FormUtil.FormCreator<T> formCreator) |
Obtains a form bean from the session if it exists or creates a new form bean and stores it in the session.
|
protected <T> T |
BaseFormXmlController.getOrCreateFormBean(javax.servlet.http.HttpServletRequest request,
Class<T> clazz,
String customKey,
FormUtil.FormCreator<T> formBeanCreator) |
Retrieves or creates (using the specified form bean creator) a form bean of the specified class.
|
protected <T> T |
BaseFormXmlController.getOrCreateFormBean(javax.servlet.http.HttpServletRequest request,
Class<T> clazz,
FormUtil.FormCreator<T> formBeanCreator) |
Retrieves or creates (using the specified form bean creator) a form bean of the specified class.
|