Class BaseVariableExtractorDefinitionModel
- java.lang.Object
-
- com.flowable.platform.api.repository.BaseVariableExtractorDefinitionModel
-
- All Implemented Interfaces:
VariableExtractorDefinitionModel
public class BaseVariableExtractorDefinitionModel extends Object implements VariableExtractorDefinitionModel
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringdescriptionprotected List<com.fasterxml.jackson.databind.node.ObjectNode>fullTextVariablesprotected Stringkeyprotected Stringnameprotected StringsourceIndexprotected List<VariableExtractor>variableExtractors
-
Constructor Summary
Constructors Constructor Description BaseVariableExtractorDefinitionModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Returns the optional description of this variable extractor definition, describing where and how it might be used.List<com.fasterxml.jackson.databind.node.ObjectNode>getFullTextVariables()Returns the preconfigured full text variable extractors.StringgetKey()Returns the business key usually used to reference or lookup a variable extractor definition regardless of its version.StringgetName()Returns the name of this variable extractor definition.StringgetSourceIndex()Returns the name of the index on which the variable extraction will be performed on.List<VariableExtractor>getVariableExtractors()Returns the variable extractors.voidsetDescription(String description)voidsetFullTextVariables(List<com.fasterxml.jackson.databind.node.ObjectNode> fullTextVariables)voidsetKey(String key)voidsetName(String name)voidsetSourceIndex(String sourceIndex)voidsetVariableExtractors(List<VariableExtractor> variableExtractors)
-
-
-
Field Detail
-
key
protected String key
-
name
protected String name
-
description
protected String description
-
variableExtractors
protected List<VariableExtractor> variableExtractors
-
fullTextVariables
protected List<com.fasterxml.jackson.databind.node.ObjectNode> fullTextVariables
-
sourceIndex
protected String sourceIndex
-
-
Method Detail
-
getKey
public String getKey()
Description copied from interface:VariableExtractorDefinitionModelReturns the business key usually used to reference or lookup a variable extractor definition regardless of its version.- Specified by:
getKeyin interfaceVariableExtractorDefinitionModel
-
setKey
public void setKey(String key)
-
getName
public String getName()
Description copied from interface:VariableExtractorDefinitionModelReturns the name of this variable extractor definition.- Specified by:
getNamein interfaceVariableExtractorDefinitionModel
-
setName
public void setName(String name)
-
getDescription
public String getDescription()
Description copied from interface:VariableExtractorDefinitionModelReturns the optional description of this variable extractor definition, describing where and how it might be used.- Specified by:
getDescriptionin interfaceVariableExtractorDefinitionModel
-
setDescription
public void setDescription(String description)
-
getSourceIndex
public String getSourceIndex()
Description copied from interface:VariableExtractorDefinitionModelReturns the name of the index on which the variable extraction will be performed on.- Specified by:
getSourceIndexin interfaceVariableExtractorDefinitionModel
-
setSourceIndex
public void setSourceIndex(String sourceIndex)
-
getVariableExtractors
public List<VariableExtractor> getVariableExtractors()
Description copied from interface:VariableExtractorDefinitionModelReturns the variable extractors.- Specified by:
getVariableExtractorsin interfaceVariableExtractorDefinitionModel
-
setVariableExtractors
public void setVariableExtractors(List<VariableExtractor> variableExtractors)
-
getFullTextVariables
public List<com.fasterxml.jackson.databind.node.ObjectNode> getFullTextVariables()
Description copied from interface:VariableExtractorDefinitionModelReturns the preconfigured full text variable extractors.- Specified by:
getFullTextVariablesin interfaceVariableExtractorDefinitionModel
-
setFullTextVariables
public void setFullTextVariables(List<com.fasterxml.jackson.databind.node.ObjectNode> fullTextVariables)
-
-