Interface IDtoTask
- All Known Implementing Classes:
DtoTask
public interface IDtoTask
Something that has to planned and can be executed by some process.
-
Method Summary
Modifier and TypeMethodDescriptiongetId()Unique Id of the task.The different parameters that this task has.voidUnique Id of the task.voidsetParameters(IDtoTaskParameterDeclaration[] parameters) The different parameters that this task has.
-
Method Details
-
getId
String getId()Unique Id of the task. -
setId
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
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.
-