children.add(child);
}
public void addOneToMany(String name, AssociationAttributeInfo attributeInfo, OneToManyAttribute association)
throws LayerException {
EntityCollection collection = entity.getChildCollection(name);
if (association.getValue() == null) {
addChild(new DeleteOneToManyOperation(getMapper(), getEntity(), attributeInfo));
} else {
// sort on create, update, delete
Map<Object, Entity> existingMap = new HashMap<Object, Entity>();