Package com.comalatech.workflow.model
Interface WorkflowParameter
-
- All Known Subinterfaces:
PageWorkflowParameter
public interface WorkflowParameter
This class represents a workflow parameter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
String
getName()
List<String>
getOptions()
Returns a list of the workflow parameter options.WorkflowParameterType
getType()
String
getValue()
boolean
isPageEditable()
A page editable parameter can have a different value specified on each page.void
setValue(String value)
-
-
-
Method Detail
-
getName
String getName()
-
getValue
String getValue()
-
setValue
void setValue(String value)
-
getType
WorkflowParameterType getType()
-
getOptions
List<String> getOptions()
Returns a list of the workflow parameter options. Options are only available if the WorkflowParameter type is "LIST".- Returns:
- a list of workflow parameter options
-
getDescription
String getDescription()
-
isPageEditable
boolean isPageEditable()
A page editable parameter can have a different value specified on each page.- Returns:
- true if the parameter can be edited on an individual page level
-
-