Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
JHttpResponse com.griddynamics.jagger.invoker.v2.SpringBasedHttpClient.execute ( JHttpEndpoint  endpoint)

Definition at line 136 of file SpringBasedHttpClient.java.

References com.griddynamics.jagger.invoker.v2.JHttpEndpoint.getURI().

136  {
137  URI endpointURI = endpoint.getURI();
138  RequestEntity requestEntity = mapToRequestEntity(endpointURI);
139  ResponseEntity responseEntity = restTemplate.exchange(endpointURI, HttpMethod.GET, requestEntity, byte[].class);
140  return mapToJHttpResponse(responseEntity);
141  }

Here is the call graph for this function: