Package org.hibernate.ogm.options.navigation.impl

Examples of org.hibernate.ogm.options.navigation.impl.OptionsServiceImpl


  private ServiceRegistryImplementor getServiceRegistry(Map<String, ?> cfg) {
    ServiceRegistryImplementor serviceRegistry = mock( ServiceRegistryImplementor.class );
    when( serviceRegistry.getService( ClassLoaderService.class ) ).thenReturn( new ClassLoaderServiceImpl() );

    OptionsServiceImpl optionsService = new OptionsServiceImpl();
    optionsService.injectServices( serviceRegistry );
    optionsService.configure( cfg );
    when( serviceRegistry.getService( OptionsService.class ) ).thenReturn( optionsService );

    return serviceRegistry;
  }
View Full Code Here

TOP

Related Classes of org.hibernate.ogm.options.navigation.impl.OptionsServiceImpl

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.