Class AbstractTask

  • All Implemented Interfaces:
    Task

    public abstract class AbstractTask
    extends Object
    implements Task
    This represents an abstract class implementation of a Task.
    See Also:
    Task
    • Constructor Detail

      • AbstractTask

        public AbstractTask()
    • Method Detail

      • setProperties

        public void setProperties​(Map<String,​String> properties)
        Description copied from interface: Task
        This method is called initially to set the task properties.
        Specified by:
        setProperties in interface Task
        Parameters:
        properties - The task properties
      • init

        public void init()
        Description copied from interface: Task
        This method is called once after properties are set in the task, and right before the task is executed.
        Specified by:
        init in interface Task