Examples of PreCollectionUpdateEvent


Examples of org.hibernate.event.spi.PreCollectionUpdateEvent

  private void preUpdate() {
    EventListenerGroup<PreCollectionUpdateEventListener> listenerGroup = listenerGroup( EventType.PRE_COLLECTION_UPDATE );
    if ( listenerGroup.isEmpty() ) {
      return;
    }
    final PreCollectionUpdateEvent event = new PreCollectionUpdateEvent(
        getPersister(),
        getCollection(),
        eventSource()
    );
    for ( PreCollectionUpdateEventListener listener : listenerGroup.listeners() ) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.