Package org.hibernate.event.spi

Examples of org.hibernate.event.spi.PostCollectionRecreateEvent


  private void postRecreate() {
    final EventListenerGroup<PostCollectionRecreateEventListener> listenerGroup = listenerGroup( EventType.POST_COLLECTION_RECREATE );
    if ( listenerGroup.isEmpty() ) {
      return;
    }
    final PostCollectionRecreateEvent event = new PostCollectionRecreateEvent( getPersister(), getCollection(), eventSource() );
    for ( PostCollectionRecreateEventListener listener : listenerGroup.listeners() ) {
      listener.onPostRecreateCollection( event );
    }
  }
View Full Code Here


  private void postRecreate() {
    EventListenerGroup<PostCollectionRecreateEventListener> listenerGroup = listenerGroup( EventType.POST_COLLECTION_RECREATE );
    if ( listenerGroup.isEmpty() ) {
      return;
    }
    final PostCollectionRecreateEvent event = new PostCollectionRecreateEvent( getPersister(), getCollection(), eventSource() );
    for ( PostCollectionRecreateEventListener listener : listenerGroup.listeners() ) {
      listener.onPostRecreateCollection( event );
    }
  }
View Full Code Here

  private void postRecreate() {
    EventListenerGroup<PostCollectionRecreateEventListener> listenerGroup = listenerGroup( EventType.POST_COLLECTION_RECREATE );
    if ( listenerGroup.isEmpty() ) {
      return;
    }
    final PostCollectionRecreateEvent event = new PostCollectionRecreateEvent( getPersister(), getCollection(), eventSource() );
    for ( PostCollectionRecreateEventListener listener : listenerGroup.listeners() ) {
      listener.onPostRecreateCollection( event );
    }
  }
View Full Code Here

TOP

Related Classes of org.hibernate.event.spi.PostCollectionRecreateEvent

Copyright © 2018 www.massapicom. 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.