Package org.hibernate.ogm.dialect.impl

Examples of org.hibernate.ogm.dialect.impl.GridDialectFactory


    return DatastoreServices.class;
  }

  @Override
  public DatastoreServices initiateService(SessionFactoryImplementor sessionFactory, Configuration configuration, ServiceRegistryImplementor registry) {
    GridDialectFactory dialectFactory = registry.getService( GridDialectFactory.class );
    GridDialect gridDialect = dialectFactory.buildGridDialect( configuration.getProperties(), registry );
    return new DatastoreServicesImpl( gridDialect );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.ogm.dialect.impl.GridDialectFactory

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.