Class KualiExceptionIncidentForm

java.lang.Object
org.apache.struts.action.ActionForm
org.kuali.rice.kns.web.struts.form.pojo.PojoFormBase
org.kuali.rice.kns.web.struts.form.KualiForm
org.kuali.rice.kns.web.struts.form.KualiExceptionIncidentForm
All Implemented Interfaces:
Serializable, PojoForm

@Deprecated public class KualiExceptionIncidentForm extends KualiForm
Deprecated.
KNS Struts deprecated, use KRAD and the Spring MVC framework.
This class is the action form for all Question Prompts.
See Also:
  • Constructor Details

    • KualiExceptionIncidentForm

      public KualiExceptionIncidentForm()
      Deprecated.
  • Method Details

    • populate

      public void populate(javax.servlet.http.HttpServletRequest request)
      Deprecated.
      Description copied from class: KualiForm
      Checks for methodToCall parameter, and if not populated in form calls utility method to parse the string from the request.
      Specified by:
      populate in interface PojoForm
      Overrides:
      populate in class KualiForm
      See Also:
      • invalid reference
        org.kuali.rice.krad.web.struts.pojo.PojoForm#populate(javax.servlet.http.HttpServletRequest)
    • reset

      public void reset(org.apache.struts.action.ActionMapping mapping, javax.servlet.http.HttpServletRequest request)
      Deprecated.
      Overrides:
      reset in class KualiForm
      See Also:
      • ActionForm.reset(org.apache.struts.action.ActionMapping, javax.servlet.http.HttpServletRequest)
    • toMap

      public Map<String,String> toMap()
      Deprecated.
      This method return list of required information contained by the jsp in both display and hidden properties.
      Returns:

      Example: documentId, 2942084 userEmail, someone@somewhere userName, some name componentFormName, Form that threw exception name exceptionMessage, Error message from exception displayMessage, Either exception error message or generic exception error message stackTrace, Exception stack trace here

    • isCancel

      public final boolean isCancel()
      Deprecated.
      Returns:
      the cancel
    • setCancel

      public final void setCancel(boolean cancel)
      Deprecated.
      Parameters:
      cancel - the cancel to set
    • getDescription

      public final String getDescription()
      Deprecated.
      Returns:
      the description
    • setDescription

      public final void setDescription(String description)
      Deprecated.
      Parameters:
      description - the description to set
    • getExceptionMessage

      public final String getExceptionMessage()
      Deprecated.
      Returns:
      the exceptionMessage
    • setExceptionMessage

      public final void setExceptionMessage(String exceptionMessage)
      Deprecated.
      Parameters:
      exceptionMessage - the exceptionMessage to set
    • getDisplayMessage

      public final String getDisplayMessage()
      Deprecated.
      Returns:
      the displayMessage
    • setDisplayMessage

      public final void setDisplayMessage(String displayMessage)
      Deprecated.
      Parameters:
      displayMessage - the displayMessage to set
    • getDocumentId

      public final String getDocumentId()
      Deprecated.
      Returns:
      the documentId
    • setDocumentId

      public final void setDocumentId(String documentId)
      Deprecated.
      Parameters:
      documentId - the documentId to set
    • getUserEmail

      public final String getUserEmail()
      Deprecated.
      Returns:
      the userEmail
    • setUserEmail

      public final void setUserEmail(String userEmail)
      Deprecated.
      Parameters:
      userEmail - the userEmail to set
    • getPrincipalName

      public String getPrincipalName()
      Deprecated.
      Returns:
      the principalName
    • setPrincipalName

      public void setPrincipalName(String principalName)
      Deprecated.
      Parameters:
      principalName - the principalName to set
    • getUserName

      public final String getUserName()
      Deprecated.
      Returns:
      the userName
    • setUserName

      public final void setUserName(String userName)
      Deprecated.
      Parameters:
      userName - the userName to set
    • setStackTrace

      public final void setStackTrace(String stackTrace)
      Deprecated.
      Parameters:
      stackTrace - the stackTrace to set
    • getStackTrace

      public final String getStackTrace()
      Deprecated.
      Returns:
      the stackTrace
    • getExceptionReportSubject

      public final String getExceptionReportSubject()
      Deprecated.
      Returns:
      the exceptionReportSubject
    • setExceptionReportSubject

      public final void setExceptionReportSubject(String exceptionReportSubject)
      Deprecated.
      Parameters:
      exceptionReportSubject - the exceptionReportSubject to set
    • getComponentName

      public final String getComponentName()
      Deprecated.
      Returns:
      the componentName
    • setComponentName

      public final void setComponentName(String componentName)
      Deprecated.
      Parameters:
      componentName - the componentName to set
    • shouldMethodToCallParameterBeUsed

      public boolean shouldMethodToCallParameterBeUsed(String methodToCallParameterName, String methodToCallParameterValue, javax.servlet.http.HttpServletRequest request)
      Deprecated.
      Overrides:
      shouldMethodToCallParameterBeUsed in class KualiForm
    • shouldPropertyBePopulatedInForm

      public boolean shouldPropertyBePopulatedInForm(String requestParameterName, javax.servlet.http.HttpServletRequest request)
      Deprecated.
      Description copied from interface: PojoForm
      Returns whether a request parameter should be populated as a property of the form, assuming that the request parameter name corresponds to a property on the form. This method makes no determination whether the request parameter is a property of the form, but rather from a security perspective, whether the framework should attempt to set the form property with the same name as the request parameter.
      Specified by:
      shouldPropertyBePopulatedInForm in interface PojoForm
      Overrides:
      shouldPropertyBePopulatedInForm in class KualiForm
      Parameters:
      requestParameterName - the name of the request parameter
      request - the HTTP request
      Returns:
      whether the parameter should be
      See Also: