Package io.anyline.plugin.config
Class ViewPluginCompositeConfig
-
- All Implemented Interfaces:
public class ViewPluginCompositeConfig
Schema for SDK ViewPlugin Configuration
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enum
ViewPluginCompositeConfig.ProcessingMode
The processing mode of the workflow (parallel, sequential, parallelFirstScan).
-
Field Summary
Fields Modifier and Type Field Description public String
id
public ViewPluginCompositeConfig.ProcessingMode
processingMode
public List<ViewPlugin>
viewPlugins
-
Constructor Summary
Constructors Constructor Description ViewPluginCompositeConfig()
-
Method Summary
Modifier and Type Method Description String
getId()
The ID (name) of the workflow. void
setId(String id)
The ID (name) of the workflow. ViewPluginCompositeConfig.ProcessingMode
getProcessingMode()
The processing mode of the workflow (parallel, sequential, parallelFirstScan). void
setProcessingMode(ViewPluginCompositeConfig.ProcessingMode processingMode)
The processing mode of the workflow (parallel, sequential, parallelFirstScan). List<ViewPlugin>
getViewPlugins()
The ordered list of viewPlugins, each as JSON object with a given viewPluginConfig. void
setViewPlugins(List<ViewPlugin> viewPlugins)
The ordered list of viewPlugins, each as JSON object with a given viewPluginConfig. String
toString()
int
hashCode()
boolean
equals(Object other)
-
-
Method Detail
-
getProcessingMode
ViewPluginCompositeConfig.ProcessingMode getProcessingMode()
The processing mode of the workflow (parallel, sequential, parallelFirstScan). (Required)
-
setProcessingMode
void setProcessingMode(ViewPluginCompositeConfig.ProcessingMode processingMode)
The processing mode of the workflow (parallel, sequential, parallelFirstScan). (Required)
-
getViewPlugins
List<ViewPlugin> getViewPlugins()
The ordered list of viewPlugins, each as JSON object with a given viewPluginConfig. (Required)
-
setViewPlugins
void setViewPlugins(List<ViewPlugin> viewPlugins)
The ordered list of viewPlugins, each as JSON object with a given viewPluginConfig. (Required)
-
hashCode
int hashCode()
-
-
-
-