Package org.kuali.rice.krad.service
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
FieldsModifier and TypeFieldDescriptionstatic final StringThis property must be defined in the base configuration file for specifying the mailing list for the report to be sent. -
Method Summary
Modifier and TypeMethodDescriptionvoidemailReport(String subject, String message) This method send email to the defined mailing list with a specified subject and message.voidsendFeedback(String documentId, String componentName, String description)
-
Field Details
-
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