}
//Returns nested generic types
@RequestMapping(value = "/effectives", method = RequestMethod.GET)
private ResponseEntity<List<Example>> getEffectives() {
return new ResponseEntity<List<Example>>(newArrayList(new Example("Hello", 1, EnumType.ONE,
new NestedType("test"))),
HttpStatus.OK);
}