Uses of Record Class
com.scivicslab.workfloweditor.service.WorkflowRunner.StepDto
Packages that use WorkflowRunner.StepDto
-
Uses of WorkflowRunner.StepDto in com.scivicslab.workfloweditor.rest
Fields in com.scivicslab.workfloweditor.rest with type parameters of type WorkflowRunner.StepDto -
Uses of WorkflowRunner.StepDto in com.scivicslab.workfloweditor.service
Methods in com.scivicslab.workfloweditor.service that return types with arguments of type WorkflowRunner.StepDtoModifier and TypeMethodDescriptionstatic List<WorkflowRunner.StepDto> WorkflowRunner.rowsToSteps(List<WorkflowResource.MatrixRow> rows) Converts flat MatrixRow list to structured steps (loses label/note).WorkflowRunner.ParsedWorkflow.steps()Returns the value of thestepsrecord component.Method parameters in com.scivicslab.workfloweditor.service with type arguments of type WorkflowRunner.StepDtoModifier and TypeMethodDescriptionstatic List<WorkflowResource.MatrixRow> WorkflowRunner.stepsToRows(List<WorkflowRunner.StepDto> steps) Converts structured steps to flat MatrixRow list for backward compatibility.static StringWorkflowRunner.toYamlStructured(String name, String description, List<WorkflowRunner.StepDto> steps) Converts structured steps to YAML including description/label/note.Constructor parameters in com.scivicslab.workfloweditor.service with type arguments of type WorkflowRunner.StepDtoModifierConstructorDescriptionParsedWorkflow(String name, String description, List<WorkflowRunner.StepDto> steps) Creates an instance of aParsedWorkflowrecord class.