Interface IndexedDataObject

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      com.fasterxml.jackson.databind.node.ObjectNode getData()
      The json data, represented as ObjectNode that will be indexed in the index.
      String getId()
      The id of this data object to be indexed.
      String getIndex()
      The index where the data will be indexed.
      com.fasterxml.jackson.databind.node.ObjectNode getScript()
      Update script
    • Method Detail

      • 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 as ObjectNode that will be indexed in the index.
      • getScript

        com.fasterxml.jackson.databind.node.ObjectNode getScript()
        Update script