Uses of Record Class
com.scivicslab.workfloweditor.rest.WorkflowResource.MatrixRow
Packages that use WorkflowResource.MatrixRow
-
Uses of WorkflowResource.MatrixRow in com.scivicslab.workfloweditor.rest
Fields in com.scivicslab.workfloweditor.rest with type parameters of type WorkflowResource.MatrixRowModifier and TypeFieldDescriptionWorkflowApiResource.WorkflowDto.rowsWorkflowResource.RunRequest.rowsMethods in com.scivicslab.workfloweditor.rest with parameters of type WorkflowResource.MatrixRowModifier and TypeMethodDescriptionjakarta.ws.rs.core.ResponseWorkflowApiResource.addAction(int tIndex, WorkflowResource.MatrixRow action, Integer aIndex) jakarta.ws.rs.core.ResponseWorkflowApiResource.addStep(WorkflowResource.MatrixRow row, Integer index) jakarta.ws.rs.core.ResponseWorkflowApiResource.updateAction(int tIndex, int aIndex, WorkflowResource.MatrixRow action) jakarta.ws.rs.core.ResponseWorkflowApiResource.updateStep(int index, WorkflowResource.MatrixRow row) -
Uses of WorkflowResource.MatrixRow in com.scivicslab.workfloweditor.service
Fields in com.scivicslab.workfloweditor.service with type parameters of type WorkflowResource.MatrixRowMethods in com.scivicslab.workfloweditor.service that return WorkflowResource.MatrixRowModifier and TypeMethodDescriptionWorkflowState.deleteAction(int tIndex, int aIndex) WorkflowState.deleteStep(int index) Methods in com.scivicslab.workfloweditor.service that return types with arguments of type WorkflowResource.MatrixRowModifier and TypeMethodDescriptionWorkflowState.getRows()static List<WorkflowResource.MatrixRow> WorkflowRunner.stepsToRows(List<WorkflowRunner.StepDto> steps) Converts structured steps to flat MatrixRow list for backward compatibility.Methods in com.scivicslab.workfloweditor.service with parameters of type WorkflowResource.MatrixRowModifier and TypeMethodDescriptionintWorkflowState.addAction(int tIndex, WorkflowResource.MatrixRow action, Integer aIndex) intWorkflowState.addStep(WorkflowResource.MatrixRow row, Integer index) voidWorkflowState.updateAction(int tIndex, int aIndex, WorkflowResource.MatrixRow action) voidWorkflowState.updateStep(int index, WorkflowResource.MatrixRow row) Method parameters in com.scivicslab.workfloweditor.service with type arguments of type WorkflowResource.MatrixRowModifier and TypeMethodDescriptionvoidWorkflowState.replaceAll(String name, List<WorkflowResource.MatrixRow> newRows, int maxIterations) static List<WorkflowRunner.StepDto> WorkflowRunner.rowsToSteps(List<WorkflowResource.MatrixRow> rows) Converts flat MatrixRow list to structured steps (loses label/note).voidWorkflowRunner.run(String name, List<WorkflowResource.MatrixRow> rows, int maxIterations, Level logLevel, Consumer<WorkflowResource.WorkflowEvent> emitter) Runs a workflow from matrix rows.static StringWorkflowRunner.toYaml(String name, List<WorkflowResource.MatrixRow> rows) Converts matrix rows to POJO-actor YAML format.