Package | Description |
---|---|
edu.illinois.ncsa.datawolf.domain | |
edu.illinois.ncsa.datawolf.service.utils |
Modifier and Type | Method and Description |
---|---|
WorkflowToolData |
WorkflowStep.getInput(String id)
Returns a specific input.
|
WorkflowToolData |
WorkflowTool.getInput(String id)
Return the input associated with this id.
|
WorkflowToolData |
WorkflowStep.getOutput(String id)
Returns a specific output.
|
WorkflowToolData |
WorkflowTool.getOutput(String id)
Return the output associated with this id.
|
WorkflowToolData |
Workflow.getOutput(String id) |
Modifier and Type | Method and Description |
---|---|
List<WorkflowToolData> |
WorkflowTool.getInputs()
Return the collection of datasets that are inputs to the tool.
|
Map<String,WorkflowToolData> |
WorkflowStep.getInputsToolData()
Returns a map of id of step's input to the tool's data definition.
|
List<WorkflowToolData> |
WorkflowTool.getOutputs()
Return the collection of datasets that are outputs to the tool.
|
Map<String,WorkflowToolData> |
WorkflowStep.getOutputsToolData()
Returns a map of id of step's output to the tool's data definition.
|
Modifier and Type | Method and Description |
---|---|
void |
WorkflowTool.addInput(WorkflowToolData data)
Add the data to list of inputs to the workflow tool.
|
void |
WorkflowTool.addOutput(WorkflowToolData data)
Add the data to list of outputs to the workflow tool.
|
void |
WorkflowTool.removeInput(WorkflowToolData data)
Remove the data from list of inputs to the workflow tool.
|
void |
WorkflowTool.removeOutput(WorkflowToolData data)
Remove the data from list of outputs to the workflow tool.
|
void |
WorkflowStep.setInput(WorkflowToolData input,
String outputid)
Maps the input of the tool to a specific output generated in another
step.
|
Modifier and Type | Method and Description |
---|---|
void |
WorkflowTool.setInputs(List<WorkflowToolData> inputs)
Set the list of datasets that make up the inputs to the tool.
|
void |
WorkflowTool.setOutputs(List<WorkflowToolData> outputs)
Set the list of datasets that make up the outputs to the tool.
|
Modifier and Type | Method and Description |
---|---|
static WorkflowToolData |
WorkflowUtil.createWorkflowToolData(String title,
String description,
String mimeType)
Create workflow tool data
|
Modifier and Type | Method and Description |
---|---|
static WorkflowTool |
WorkflowUtil.createWorkflowTool(String title,
String description,
String version,
Person creator,
List<WorkflowToolParameter> parameters,
List<WorkflowToolData> inputs,
List<WorkflowToolData> outputs,
Set<FileDescriptor> blobs,
String impl,
String executor)
Create workflow tool
|
static WorkflowTool |
WorkflowUtil.createWorkflowTool(String title,
String description,
String version,
Person creator,
List<WorkflowToolParameter> parameters,
List<WorkflowToolData> inputs,
List<WorkflowToolData> outputs,
Set<FileDescriptor> blobs,
String impl,
String executor)
Create workflow tool
|
Copyright © 2017. All rights reserved.