```java @Entity public class Person { @Id protected String ssn; protected String name; @ElementCollection protected Set<String> nickNames = new HashSet(); // ... }