I know I Can do this:

ResponseEntity<MyObject> myObject = restTemplate.getForEntity(url, MyObject.class );

but can I easily return a List of Objects as well, like this:

...