@RequestMapping(value = "/client", produces = "application/json; charser=utf-8")
public @ResponseBody Client getClient() {
Person p = new Person();
p.setAddress(null);
p.setContact(null);
p.setDateOfBirth(Date.from(Instant.now()));
p.setFirstName("Jan");
p.setLastName("Kowalski");
p.setPeselNumber("11111111111");
Client c = new IndividualClient(p);