HttpEntity<Void> request = new HttpEntity<>(headers);
ResponseEntity<List<User>> users = this.restTemplate.exchange(
  "http://localhost:8080/users",
  HttpMethod.GET,
  request,
  new ParameterizedTypeReference<List<User>>(){}
);
return users.getBody;