1 package org.hibernate.test.legacy;2 3 import java.io.Serializable ;4 5 public class NestingComponent implements Serializable {6 private ComponentCollection nested;7 public ComponentCollection getNested() {8 return nested;9 }10 11 public void setNested(ComponentCollection collection) {12 nested = collection;13 }14 15 }16