Class Neo4jDriverProperties
- java.lang.Object
-
- org.neo4j.driver.springframework.boot.autoconfigure.Neo4jDriverProperties
-
@ConfigurationProperties(prefix="org.neo4j.driver") public class Neo4jDriverProperties extends java.lang.ObjectUsed to configure an instance of theNeo4j-Java-Driver.- Author:
- Michael J. Simons
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classNeo4jDriverProperties.Authenticationstatic classNeo4jDriverProperties.DriverSettingsstatic classNeo4jDriverProperties.PoolSettingsstatic classNeo4jDriverProperties.TrustSettings
-
Constructor Summary
Constructors Constructor Description Neo4jDriverProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.neo4j.driver.ConfigasDriverConfig()Neo4jDriverProperties.AuthenticationgetAuthentication()org.neo4j.driver.AuthTokengetAuthToken()Neo4jDriverProperties.DriverSettingsgetConfig()Neo4jDriverProperties.PoolSettingsgetPool()java.net.URIgetUri()voidsetAuthentication(Neo4jDriverProperties.Authentication authentication)voidsetConfig(Neo4jDriverProperties.DriverSettings config)voidsetPool(Neo4jDriverProperties.PoolSettings pool)voidsetUri(java.net.URI uri)
-
-
-
Method Detail
-
getUri
public java.net.URI getUri()
-
setUri
public void setUri(java.net.URI uri)
-
getAuthentication
public Neo4jDriverProperties.Authentication getAuthentication()
-
setAuthentication
public void setAuthentication(Neo4jDriverProperties.Authentication authentication)
-
getPool
public Neo4jDriverProperties.PoolSettings getPool()
-
setPool
public void setPool(Neo4jDriverProperties.PoolSettings pool)
-
getConfig
public Neo4jDriverProperties.DriverSettings getConfig()
-
setConfig
public void setConfig(Neo4jDriverProperties.DriverSettings config)
-
getAuthToken
public org.neo4j.driver.AuthToken getAuthToken()
-
asDriverConfig
public org.neo4j.driver.Config asDriverConfig()
-
-