Interface KualiFeedbackService

All Known Subinterfaces:
KualiExceptionIncidentService

public interface KualiFeedbackService
This new feedback service was added to refactor KualiExceptionIncidentService. Now the KualiExceptionIncidentService extends this service so that exception reporting is considered to be a type of feedback. Both services share the emailReport method which formats and sends an email to the appropriate list.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    This property must be defined in the base configuration file for specifying the mailing list for the report to be sent.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    emailReport(String subject, String message)
    This method send email to the defined mailing list with a specified subject and message.
    void
    sendFeedback(String documentId, String componentName, String description)
     
  • Field Details

    • REPORT_MAIL_LIST

      static final String REPORT_MAIL_LIST
      This property must be defined in the base configuration file for specifying the mailing list for the report to be sent.

      Example: <param name="KualiFeedbackService.REPORT_MAIL_LIST">a@y,b@z</param>

  • Method Details