Interface IDtoTask

All Known Implementing Classes:
DtoTask

public interface IDtoTask
Something that has to planned and can be executed by some process.
  • Method Details

    • getId

      String getId()
      Unique Id of the task.
    • setId

      void setId(String id)
      Unique Id of the task.
    • getParameters

      IDtoTaskParameterDeclaration[] getParameters()
      The different parameters that this task has. They define an interface that all ProductionJobs that require this task must provide. You can only use this interface when implementing a runModel for a process capable of executing this task.
    • setParameters

      void setParameters(IDtoTaskParameterDeclaration[] parameters)
      The different parameters that this task has. They define an interface that all ProductionJobs that require this task must provide. You can only use this interface when implementing a runModel for a process capable of executing this task.