Uses of Class
org.elasticsearch.action.get.GetRequest

Packages that use GetRequest
org.elasticsearch.action.get Get action. 
org.elasticsearch.client The client module allowing to easily perform actions/operations. 
org.elasticsearch.client.support   
org.elasticsearch.client.transport   
 

Uses of GetRequest in org.elasticsearch.action.get
 

Methods in org.elasticsearch.action.get that return GetRequest
 GetRequest GetRequest.fields(String... fields)
          Explicitly specify the fields that will be returned.
 GetRequest GetRequest.id(String id)
          Sets the id of the document to fetch.
 GetRequest GetRequest.index(String index)
          Sets the index of the document to fetch.
 GetRequest GetRequest.listenerThreaded(boolean threadedListener)
          Should the listener be called on a separate thread if needed.
protected  GetRequest TransportGetAction.newRequest()
           
 GetRequest GetRequest.operationThreaded(boolean threadedOperation)
          Controls if the operation will be executed on a separate thread when executed locally.
 GetRequest GetRequest.parent(String parent)
          Sets the parent id of this document.
 GetRequest GetRequest.preference(String preference)
          Sets the preference to execute the search.
 GetRequest GetRequest.realtime(Boolean realtime)
           
 GetRequest GetRequest.refresh(boolean refresh)
          Should a refresh be executed before this get operation causing the operation to return the latest value.
 GetRequest GetRequest.routing(String routing)
          Controls the shard routing of the request.
 GetRequest GetRequest.type(String type)
          Sets the type of the document to fetch.
 

Methods in org.elasticsearch.action.get with parameters of type GetRequest
protected  ClusterBlockException TransportGetAction.checkGlobalBlock(ClusterState state, GetRequest request)
           
protected  ClusterBlockException TransportGetAction.checkRequestBlock(ClusterState state, GetRequest request)
           
protected  void TransportGetAction.resolveRequest(ClusterState state, GetRequest request)
           
protected  GetResponse TransportGetAction.shardOperation(GetRequest request, int shardId)
           
protected  ShardIterator TransportGetAction.shards(ClusterState state, GetRequest request)
           
 

Uses of GetRequest in org.elasticsearch.client
 

Methods in org.elasticsearch.client that return GetRequest
static GetRequest Requests.getRequest(String index)
          Creates a get request to get the JSON source from an index based on a type and id.
 

Methods in org.elasticsearch.client with parameters of type GetRequest
 ActionFuture<GetResponse> Client.get(GetRequest request)
          Gets the document that was indexed from an index with a type and id.
 void Client.get(GetRequest request, ActionListener<GetResponse> listener)
          Gets the document that was indexed from an index with a type and id.
 

Uses of GetRequest in org.elasticsearch.client.support
 

Methods in org.elasticsearch.client.support with parameters of type GetRequest
 ActionFuture<GetResponse> AbstractClient.get(GetRequest request)
           
 void AbstractClient.get(GetRequest request, ActionListener<GetResponse> listener)
           
 

Uses of GetRequest in org.elasticsearch.client.transport
 

Methods in org.elasticsearch.client.transport with parameters of type GetRequest
 ActionFuture<GetResponse> TransportClient.get(GetRequest request)
           
 void TransportClient.get(GetRequest request, ActionListener<GetResponse> listener)
           
 



Copyright © 2009-2012. All Rights Reserved.