When I hit
@FeignClient(name = "abc_abc", url = "${abc.host}")
public interface validateClient {
@PostMapping(path = "/api/abc/validate",
consumes = "application/json",
produces = "application/json")
**public <?> validateResponse**(@RequestHeader HttpHeaders htppHeaders, @RequestParam Map<String, Object> params,
@RequestBody String request);
}
in this example API: /api/abc/validate i just want to return only HTTP status code what is the return type of validateResponse method ? please some one plz suggest