Package com.flowable.indexing.impl
Class ObjectNodeIndexedDataObject
- java.lang.Object
-
- com.flowable.indexing.impl.ObjectNodeIndexedDataObject
-
- All Implemented Interfaces:
IndexedDataObject
public class ObjectNodeIndexedDataObject extends Object implements IndexedDataObject
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringidprotected Stringindexprotected com.fasterxml.jackson.databind.node.ObjectNodeobjectNodeprotected com.fasterxml.jackson.databind.node.ObjectNodescriptNode
-
Constructor Summary
Constructors Constructor Description ObjectNodeIndexedDataObject(String index, String id, com.fasterxml.jackson.databind.node.ObjectNode objectNode)ObjectNodeIndexedDataObject(String index, String id, com.fasterxml.jackson.databind.node.ObjectNode objectNode, com.fasterxml.jackson.databind.node.ObjectNode scriptNode)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.fasterxml.jackson.databind.node.ObjectNodegetData()The json data, represented asObjectNodethat will be indexed in the index.StringgetId()The id of this data object to be indexed.StringgetIndex()The index where the data will be indexed.com.fasterxml.jackson.databind.node.ObjectNodegetScript()Update script
-
-
-
Method Detail
-
getIndex
public String getIndex()
Description copied from interface:IndexedDataObjectThe index where the data will be indexed.- Specified by:
getIndexin interfaceIndexedDataObject
-
getId
public String getId()
Description copied from interface:IndexedDataObjectThe 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.- Specified by:
getIdin interfaceIndexedDataObject- Returns:
- the id of this indexed data object, which must be unique within at least the index it is used
-
getData
public com.fasterxml.jackson.databind.node.ObjectNode getData()
Description copied from interface:IndexedDataObjectThe json data, represented asObjectNodethat will be indexed in the index.- Specified by:
getDatain interfaceIndexedDataObject
-
getScript
public com.fasterxml.jackson.databind.node.ObjectNode getScript()
Description copied from interface:IndexedDataObjectUpdate script- Specified by:
getScriptin interfaceIndexedDataObject
-
-