Package com.flowable.indexing.config
Interface IndexedDataObject
- All Known Implementing Classes:
ObjectNodeIndexedDataObject
public interface IndexedDataObject
-
Method Summary
Modifier and TypeMethodDescriptioncom.fasterxml.jackson.databind.node.ObjectNode
getData()
The json data, represented asObjectNode
that will be indexed in the index.getId()
The id of this data object to be indexed.getIndex()
The index where the data will be indexed.com.fasterxml.jackson.databind.node.ObjectNode
Update script
-
Method Details
-
getIndex
String getIndex()The index where the data will be indexed. -
getId
String getId()The id of this data object to be indexed. This id is used for indexing and retrieval by id, so make sure it is unique at least within the index it is used.- Returns:
- the id of this indexed data object, which must be unique within at least the index it is used
-
getData
com.fasterxml.jackson.databind.node.ObjectNode getData()The json data, represented asObjectNode
that will be indexed in the index. -
getScript
com.fasterxml.jackson.databind.node.ObjectNode getScript()Update script
-