Class HistoryPlugin

  • All Implemented Interfaces:
    Plugin

    public class HistoryPlugin
    extends AbstractPlugin
    This Plugin creates a history log in the property txtWorkflowHistory. The history log contains a list of history entires. Each entry provides the following information:
    • date of creation (Date)
    • comment (String)
    • userID (String)
    Note: In early versions of this plugin the history entries were stored in a simple string list. The date was separated by the char sequence ' : ' from the comment entry. The userId was not stored explicit. This plugin converts the old format automatically (see method convertOldFormat)
    Version:
    2.0
    Author:
    Ralph Soika
    • Constructor Detail

      • HistoryPlugin

        public HistoryPlugin()
    • Method Detail

      • convertOldFormat

        protected void convertOldFormat()
        This method converts the old StringList format in the new format with a list of separated values:
        • date of creation (Date)
        • comment (String)
        • userID (String)