package com.baeldung.javers; import java.util.List; public class PersonWithAddress { private Integer id; private String name; private List
address; public PersonWithAddress(Integer id, String name, List
address) { this.id = id; this.name = name; this.address = address; } public Integer getId() { return id; } public String getName() { return name; } public void setId(Integer id) { this.id = id; } public void setName(String name) { this.name = name; } public List
getAddress() { return address; } public void setAddress(List
address) { this.address = address; } }