Package org.hibernate.ogm.dialect.spi

Examples of org.hibernate.ogm.dialect.spi.SessionFactoryLifecycleAwareDialect


  @Override
  public void sessionFactoryCreated(SessionFactory factory) {
    SessionFactoryImplementor factoryImplementor = (SessionFactoryImplementor) factory;
    GridDialect gridDialect = factoryImplementor.getServiceRegistry().getService( GridDialect.class );
    SessionFactoryLifecycleAwareDialect sessionFactoryAwareDialect = GridDialects.getDialectFacetOrNull( gridDialect, SessionFactoryLifecycleAwareDialect.class );
    if ( sessionFactoryAwareDialect != null ) {
      sessionFactoryAwareDialect.sessionFactoryCreated( factoryImplementor );
    }
  }
View Full Code Here

TOP

Related Classes of org.hibernate.ogm.dialect.spi.SessionFactoryLifecycleAwareDialect

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.