Package org.hibernate.engine.internal

Examples of org.hibernate.engine.internal.StatisticalLoggingSessionEventListener


  }

  public List<SessionEventListener> buildBaselineList() {
    List<SessionEventListener> list = new ArrayList<SessionEventListener>();
    if ( logSessionMetrics && StatisticalLoggingSessionEventListener.isLoggingEnabled() ) {
      list.add( new StatisticalLoggingSessionEventListener() );
    }
    if ( autoListener != null ) {
      try {
        list.add( autoListener.newInstance() );
      }
View Full Code Here

TOP

Related Classes of org.hibernate.engine.internal.StatisticalLoggingSessionEventListener

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.