Interface | Description |
---|---|
AuthToken |
This is a combination of a Principal, for instance a username,
and one or more Credentials, for instance a password.
|
Driver |
A Neo4j database driver, through which you can create
sessions to run statements against the database. |
Record |
A record is the object you work with when reading
StatementResult - results
are streams of records, where records carry the values your statement returned. |
Session |
A live session with a Neo4j instance.
|
StatementResult |
The result of running a statement, conceptually a stream of
records . |
StatementRunner |
Common interface for components that can execute Neo4j statements.
|
Transaction |
Represents a transaction in the Neo4j database.
|
Value |
Represents a value from Neo4j.
|
Class | Description |
---|---|
AuthTokens |
This is a listing of the various methods of authentication supported by this
driver.
|
Config |
A configuration class to config driver properties.
|
Config.ConfigBuilder |
Used to build new config instances
|
Config.TrustStrategy |
Control how the driver determines if it can trust the encryption certificates provided by the Neo4j instance it is connected to.
|
GraphDatabase |
Creates
drivers , optionally letting you GraphDatabase.driver(URI, Config) to configure them. |
Records |
Static utility methods for retaining records
|
Statement |
An executable statement, i.e.
|
Values |
Utility for wrapping regular Java types and exposing them as
Value
objects, and vice versa. |
Enum | Description |
---|---|
Config.EncryptionLevel |
Control the level of encryption to require
|
Config.TrustStrategy.Strategy |
Copyright © 2016. All rights reserved.