Add getMessage to ProcessSummaryLineInterface

This commit is contained in:
2023-09-28 14:50:40 -05:00
parent ac37e3492b
commit fe8af54ee5
4 changed files with 27 additions and 0 deletions

View File

@ -131,6 +131,17 @@ public class ProcessSummaryFilterLink implements ProcessSummaryLineInterface
/*******************************************************************************
**
*******************************************************************************/
@Override
public String getMessage()
{
return getFullText();
}
/*******************************************************************************
** Setter for status
**

View File

@ -182,6 +182,7 @@ public class ProcessSummaryLine implements ProcessSummaryLineInterface
** Getter for message
**
*******************************************************************************/
@Override
public String getMessage()
{
return message;

View File

@ -38,6 +38,10 @@ public interface ProcessSummaryLineInterface extends Serializable
*******************************************************************************/
Status getStatus();
/*******************************************************************************
**
*******************************************************************************/
String getMessage();
/*******************************************************************************
** meant to be called by framework, after process is complete, give the

View File

@ -95,6 +95,17 @@ public class ProcessSummaryRecordLink implements ProcessSummaryLineInterface
/*******************************************************************************
**
*******************************************************************************/
@Override
public String getMessage()
{
return getFullText();
}
/*******************************************************************************
**
*******************************************************************************/