Package org.opensearch.client.transport
Interface JsonEndpoint<RequestT,ResponseT,ErrorT>
-
- All Superinterfaces:
Endpoint<RequestT,ResponseT,ErrorT>
- All Known Implementing Classes:
BooleanEndpoint,DelegatingJsonEndpoint,EndpointWithResponseMapperAttr,SimpleEndpoint
public interface JsonEndpoint<RequestT,ResponseT,ErrorT> extends Endpoint<RequestT,ResponseT,ErrorT>
An endpoint with a JSON response body.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JsonpDeserializer<ResponseT>responseDeserializer()The entity parser for the response body.-
Methods inherited from interface org.opensearch.client.transport.Endpoint
errorDeserializer, hasRequestBody, headers, isError, method, queryParameters, requestUrl
-
-
-
-
Method Detail
-
responseDeserializer
JsonpDeserializer<ResponseT> responseDeserializer()
The entity parser for the response body.
-
-