package io.trygvis.persistence.test; import javax.persistence.Id; public class ParentEntity { @Id public final Long id; public ParentEntity(Long id) { this.id = id; } private Integer age; public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } }