Package org.hibernate.service.event.spi

Examples of org.hibernate.service.event.spi.DuplicationStrategy


  public EventListenerGroupImpl(EventType<T> eventType) {
    this.eventType = eventType;
    duplicationStrategies.add(
        // At minimum make sure we do not register the same exact listener class multiple times.
        new DuplicationStrategy() {
          @Override
          public boolean areMatch(Object listener, Object original) {
            return listener.getClass().equals( original.getClass() );
          }
View Full Code Here

TOP

Related Classes of org.hibernate.service.event.spi.DuplicationStrategy

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.