Package com.appiancorp.common.struts
Class BaseUpdateAction
java.lang.Object
com.appiancorp.web.framework.kernel.main.Action
com.appiancorp.common.struts.BaseAction
com.appiancorp.common.struts.BaseViewAction
com.appiancorp.common.struts.BaseUpdateAction
- All Implemented Interfaces:
com.appiancorp.web.framework.kernel.main.IAction
- Direct Known Subclasses:
PortletUpdateAction
Deprecated.
The Portal functionality will be removed in a future release. Use the Tempo Interface for similar functionality.
Base Action class for all actions in the product.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Deprecated.The name of the "cancel"ActionForward
static final String
Deprecated.Forward taken if the token is invalid (i.e. double submit)static final String
Deprecated.The name of the "prepare"ActionForward
static final String
Deprecated.Request parameter for the state of the form.static final String
Deprecated.static final String
Deprecated.static final String
Deprecated.Request parameter for overriding the token check.static final String
Deprecated.static final String
Deprecated.static final String
Deprecated.Fields inherited from class com.appiancorp.common.struts.BaseAction
FORWARD_ERROR, FORWARD_NO_ACCESS, FORWARD_SUCCESS
Fields inherited from class com.appiancorp.web.framework.kernel.main.Action
servlet
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected com.appiancorp.web.framework.kernel.main.IActionForward
afterPrepare
(com.appiancorp.web.framework.kernel.main.IActionMapping m_, com.appiancorp.web.framework.kernel.main.IActionForm f_, javax.servlet.http.HttpServletRequest q_, javax.servlet.http.HttpServletResponse r_, com.appiancorp.web.framework.kernel.main.IActionForward defaultForward_) Deprecated.Performed after theprepare(IActionMapping, IActionForm, HttpServletRequest, HttpServletResponse)
.protected com.appiancorp.web.framework.kernel.main.ActionErrors
afterValidate
(com.appiancorp.web.framework.kernel.main.IActionMapping m_, com.appiancorp.web.framework.kernel.main.IActionForm f_, javax.servlet.http.HttpServletRequest q_, String currentStep_) Deprecated.Performed aftervalidate(IActionMapping, IActionForm, HttpServletRequest, String)
.protected com.appiancorp.web.framework.kernel.main.IActionForward
beforePrepare
(com.appiancorp.web.framework.kernel.main.IActionMapping m_, com.appiancorp.web.framework.kernel.main.IActionForm f_, javax.servlet.http.HttpServletRequest q_, javax.servlet.http.HttpServletResponse r_) Deprecated.protected com.appiancorp.web.framework.kernel.main.ActionErrors
beforeValidate
(com.appiancorp.web.framework.kernel.main.IActionMapping m_, com.appiancorp.web.framework.kernel.main.IActionForm f_, javax.servlet.http.HttpServletRequest q_, String currentStep_) Deprecated.Performed beforevalidate(IActionMapping, IActionForm, HttpServletRequest, String)
.protected com.appiancorp.web.framework.kernel.main.IActionForward
handleInvalidToken
(com.appiancorp.web.framework.kernel.main.IActionMapping m_, com.appiancorp.web.framework.kernel.main.IActionForm f_, javax.servlet.http.HttpServletRequest q_, javax.servlet.http.HttpServletResponse r_) Deprecated.Returns theActionForward
object mapped from this Action for invalid tokensprotected com.appiancorp.web.framework.kernel.main.IActionForward
prepare
(com.appiancorp.web.framework.kernel.main.IActionMapping m_, com.appiancorp.web.framework.kernel.main.IActionForm f_, javax.servlet.http.HttpServletRequest q_, javax.servlet.http.HttpServletResponse r_) Deprecated.Perpares the data, usually by populating theActionForm
to pre-populate a JSP form.protected boolean
shouldSetSessionAttributes
(javax.servlet.http.HttpServletRequest q) Deprecated.protected com.appiancorp.web.framework.kernel.main.ActionErrors
validate
(com.appiancorp.web.framework.kernel.main.IActionMapping m_, com.appiancorp.web.framework.kernel.main.IActionForm f_, javax.servlet.http.HttpServletRequest q_, String currentStep_) Deprecated.Validates the data and returns any errors.Methods inherited from class com.appiancorp.common.struts.BaseViewAction
addOutput, afterMain, beforeMain, getOutputValue, getServiceContext, main
Methods inherited from class com.appiancorp.common.struts.BaseAction
addError, addError, addError, addError, addError, addError, addError, addError, addMessage, addMessage, addMessage, addMessage, canAccess, decodeParameters, execute, generateToken, getAuthorizationActionName, getAuthorizationProvider, getValueFromRequest, getValueFromRequest, initBundle, isTokenValid, isTokenValid, requiresAuthorization, resetToken, saveErrors, saveErrors, saveMessages, saveMessages, saveToken
Methods inherited from class com.appiancorp.web.framework.kernel.main.Action
addErrors, addMessages, execute, getErrors, getLocale, getMessages, getResources, getResources, getServlet, isCancelled, saveErrors, saveMessages, setLocale, setServlet
-
Field Details
-
REQUEST_TOKEN_OVERRIDE
Deprecated.Request parameter for overriding the token check. If this parameter is present on the request, then the main method will be called (not the prepare).- See Also:
-
REQUEST_FORM_STATE
Deprecated.Request parameter for the state of the form. States include STATE_PREPARE, STATE_SAVE, and STATE_VALIDATE- See Also:
-
REQUEST_TOKEN
Deprecated.- See Also:
-
REQUEST_RECOVERED
Deprecated.- See Also:
-
STATE_PREPARE
Deprecated.- See Also:
-
STATE_SAVE
Deprecated.- See Also:
-
STATE_VALIDATE
Deprecated.- See Also:
-
FORWARD_CANCEL
Deprecated.The name of the "cancel"ActionForward
- See Also:
-
FORWARD_PREPARE
Deprecated.The name of the "prepare"ActionForward
- See Also:
-
FORWARD_INVALID_TOKEN
Deprecated.Forward taken if the token is invalid (i.e. double submit)- See Also:
-
-
Constructor Details
-
BaseUpdateAction
public BaseUpdateAction()Deprecated.
-
-
Method Details
-
beforeValidate
protected com.appiancorp.web.framework.kernel.main.ActionErrors beforeValidate(com.appiancorp.web.framework.kernel.main.IActionMapping m_, com.appiancorp.web.framework.kernel.main.IActionForm f_, javax.servlet.http.HttpServletRequest q_, String currentStep_) Deprecated.Performed beforevalidate(IActionMapping, IActionForm, HttpServletRequest, String)
. Override to implement.- Parameters:
m_
- the action mappingf_
- the action formq_
- the requestcurrentStep_
- the current step in a UI wizard, if applicable- Returns:
- any errors that may have occurred during execution of this method
-
validate
protected com.appiancorp.web.framework.kernel.main.ActionErrors validate(com.appiancorp.web.framework.kernel.main.IActionMapping m_, com.appiancorp.web.framework.kernel.main.IActionForm f_, javax.servlet.http.HttpServletRequest q_, String currentStep_) Deprecated.Validates the data and returns any errors. Can be called explicitly, but also called beforeBaseViewAction.main(com.appiancorp.web.framework.kernel.main.IActionMapping, com.appiancorp.web.framework.kernel.main.IActionForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
is executed. Override to implement.- Parameters:
m_
- the action mappingf_
- the action formq_
- the requestcurrentStep_
- the current step in a UI wizard, if applicable- Returns:
- any errors that may have occurred during execution of this method, particularly validation-related
-
afterValidate
protected com.appiancorp.web.framework.kernel.main.ActionErrors afterValidate(com.appiancorp.web.framework.kernel.main.IActionMapping m_, com.appiancorp.web.framework.kernel.main.IActionForm f_, javax.servlet.http.HttpServletRequest q_, String currentStep_) Deprecated.Performed aftervalidate(IActionMapping, IActionForm, HttpServletRequest, String)
. Override to implement.- Parameters:
m_
- the action mappingf_
- the action formq_
- the requestcurrentStep_
- the current step in a UI wizard, if applicable- Returns:
- any errors that may have occurred during execution of this method
-
prepare
protected com.appiancorp.web.framework.kernel.main.IActionForward prepare(com.appiancorp.web.framework.kernel.main.IActionMapping m_, com.appiancorp.web.framework.kernel.main.IActionForm f_, javax.servlet.http.HttpServletRequest q_, javax.servlet.http.HttpServletResponse r_) Deprecated.Perpares the data, usually by populating theActionForm
to pre-populate a JSP form. This implementation simply returns the "prepare"ActionForward
destination. Override to provide a custom implementation.- Parameters:
m_
- TheActionMapping
used to select this instancef_
- The optionalActionForm
bean for this request (if any)q_
- The HTTP request we are processingr_
- The HTTP response we are creating- Returns:
- the destination
ActionForward
-
beforePrepare
protected com.appiancorp.web.framework.kernel.main.IActionForward beforePrepare(com.appiancorp.web.framework.kernel.main.IActionMapping m_, com.appiancorp.web.framework.kernel.main.IActionForm f_, javax.servlet.http.HttpServletRequest q_, javax.servlet.http.HttpServletResponse r_) Deprecated.Performed beforeprepare(IActionMapping, IActionForm, HttpServletRequest, HttpServletResponse)
. Override to implement.- Parameters:
m_
- TheActionMapping
used to select this instancef_
- The optionalActionForm
bean for this request (if any)q_
- The HTTP request we are processingr_
- The HTTP response we are creating- Returns:
- the destination
ActionForward
-
afterPrepare
protected com.appiancorp.web.framework.kernel.main.IActionForward afterPrepare(com.appiancorp.web.framework.kernel.main.IActionMapping m_, com.appiancorp.web.framework.kernel.main.IActionForm f_, javax.servlet.http.HttpServletRequest q_, javax.servlet.http.HttpServletResponse r_, com.appiancorp.web.framework.kernel.main.IActionForward defaultForward_) Deprecated.Performed after theprepare(IActionMapping, IActionForm, HttpServletRequest, HttpServletResponse)
. Override to implement.- Parameters:
m_
- TheActionMapping
used to select this instancef_
- The optionalActionForm
bean for this request (if any)q_
- The HTTP request we are processingr_
- The HTTP response we are creatingdefaultForward_
- the default action forward- Returns:
- the destination
ActionForward
-
shouldSetSessionAttributes
protected boolean shouldSetSessionAttributes(javax.servlet.http.HttpServletRequest q) Deprecated. -
handleInvalidToken
protected com.appiancorp.web.framework.kernel.main.IActionForward handleInvalidToken(com.appiancorp.web.framework.kernel.main.IActionMapping m_, com.appiancorp.web.framework.kernel.main.IActionForm f_, javax.servlet.http.HttpServletRequest q_, javax.servlet.http.HttpServletResponse r_) Deprecated.Returns theActionForward
object mapped from this Action for invalid tokens- Parameters:
m_
- TheActionMapping
used to select this instancef_
- The optionalActionForm
bean for this request (if any)q_
- The HTTP request we are processingr_
- The HTTP response we are creating- Returns:
- the destination
ActionForward
object
-