@RequestMapping(value = FIND_PAGINATED_REQUEST, method = RequestMethod.GET)
public PersonFindResponse find(@PathVariable(PAGE_VAR) int page,
@PathVariable(PAGE_SIZE_VAR) int pageSize) {
logger.info("Find person page. page={} pageSize={}", page, pageSize);
return new PersonFindResponse()
.withCount(2)
.withResults(new Person().withId(ID).withFirstName(FIRST_NAME).withLastName(LAST_NAME),
new Person().withId(SECOND_ID).withFirstName(SECOND_FIRST_NAME).withLastName(SECOND_LAST_NAME));
}