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