Java Code Examples for org.neo4j.driver.Driver#defaultTypeSystem()

The following examples show how to use org.neo4j.driver.Driver#defaultTypeSystem() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DefaultReactiveNeo4jClient.java    From sdn-rx with Apache License 2.0 5 votes vote down vote up
DefaultReactiveNeo4jClient(Driver driver) {

		this.driver = driver;
		this.typeSystem = driver.defaultTypeSystem();
		this.conversionService = new DefaultConversionService();
		new Neo4jConversions().registerConvertersIn((ConverterRegistry) conversionService);
	}
 
Example 2
Source File: DefaultNeo4jClient.java    From sdn-rx with Apache License 2.0 5 votes vote down vote up
DefaultNeo4jClient(Driver driver) {

		this.driver = driver;
		this.typeSystem = driver.defaultTypeSystem();

		this.conversionService = new DefaultConversionService();
		new Neo4jConversions().registerConvertersIn((ConverterRegistry) conversionService);
	}