Package org.elasticsearch.rest.action.document
package org.elasticsearch.rest.action.document
RestHandler
s for actions that can be taken on documents like index, update, get, and delete.-
ClassDescription{ "index" : { "_index" : "test", "_type" : "type1", "_id" : "1" } { "type1" : { "field1" : "value1" } } { "delete" : { "_index" : "test", "_type" : "type1", "_id" : "2" } } { "create" : { "_index" : "test", "_type" : "type1", "_id" : "1" } { "type1" : { "field1" : "value1" } }The REST handler for get source and head source APIs.This class parses the json request and translates it into a TermVectorsRequest.