1 package org.hibernate.event; 3 4 import org.hibernate.collection.PersistentCollection; 5 6 12 public class InitializeCollectionEvent extends AbstractEvent { 13 14 private final PersistentCollection collection; 15 16 public InitializeCollectionEvent(PersistentCollection collection, EventSource source) { 17 super(source); 18 this.collection = collection; 19 } 20 21 public PersistentCollection getCollection() { 22 return collection; 23 } 24 } 25 | Popular Tags |