Merge remote-tracking branch 'upstream/main' into dev

This commit is contained in:
2021-11-08 15:03:01 +01:00
4 changed files with 127 additions and 0 deletions

View File

@@ -46,6 +46,7 @@ public class Task {
this.taskId = new TaskId(UUID.randomUUID().toString());
this.taskResult = new TaskResult("");
this.originalTaskUri = taskUri;
this.inputData = null;
this.outputData = null;
}

View File

@@ -19,6 +19,7 @@ public class TaskList {
//Note: We do not care about the management of task lists, there is only one within this service
//--> using the Singleton pattern here to make lives easy; we will later load it from a repo
private static final TaskList taskList = new TaskList(new TaskListName("tapas-tasks-group1"));
private TaskList(TaskListName taskListName) {