Interface VariableExtractorDefinitionModel
-
- All Known Implementing Classes:
BaseVariableExtractorDefinitionModel
public interface VariableExtractorDefinitionModel- Author:
- Yvo Swillens
-
-
Method Summary
All Methods Instance Methods Abstract 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.
-
-
-
Method Detail
-
getKey
String getKey()
Returns the business key usually used to reference or lookup a variable extractor definition regardless of its version.
-
getName
String getName()
Returns the name of this variable extractor definition.
-
getDescription
String getDescription()
Returns the optional description of this variable extractor definition, describing where and how it might be used.
-
getSourceIndex
String getSourceIndex()
Returns the name of the index on which the variable extraction will be performed on.
-
getVariableExtractors
List<VariableExtractor> getVariableExtractors()
Returns the variable extractors.
-
getFullTextVariables
List<com.fasterxml.jackson.databind.node.ObjectNode> getFullTextVariables()
Returns the preconfigured full text variable extractors.
-
-