Serialized Form
-
Package org.neo4j.driver
-
Class org.neo4j.driver.Config
class Config extends Object implements Serializable- serialVersionUID:
- -4496545746399601108L
-
Serialized Fields
-
connectionAcquisitionTimeoutMillis
long connectionAcquisitionTimeoutMillis
The maximum amount of time connection acquisition will attempt to acquire a connection from the connection pool. -
connectionTimeoutMillis
int connectionTimeoutMillis
The configured connection timeout value in milliseconds. -
eventLoopThreads
int eventLoopThreads
The event loop thread count. -
fetchSize
long fetchSize
The fetch size. -
idleTimeBeforeConnectionTest
long idleTimeBeforeConnectionTest
The idle time that defines if connection should be tested before being handed out by the connection pool. -
logging
Logging logging
User defined logging -
logLeakedSessions
boolean logLeakedSessions
The flag indicating if leaked sessions logging is enabled. -
maxConnectionLifetimeMillis
long maxConnectionLifetimeMillis
The maximum connection lifetime in milliseconds. -
maxConnectionPoolSize
int maxConnectionPoolSize
The maximum connection pool size. -
maxTransactionRetryTimeMillis
long maxTransactionRetryTimeMillis
The managed transactions maximum retry time. -
notificationConfig
NotificationConfig notificationConfig
The notification config. -
resolver
ServerAddressResolver resolver
The server address resolver. -
routingTablePurgeDelayMillis
long routingTablePurgeDelayMillis
The stale routing table purge delay in milliseconds. -
securitySettings
org.neo4j.driver.internal.SecuritySettings securitySettings
The security settings. -
telemetryDisabled
boolean telemetryDisabled
Specify if telemetry collection is disabled.By default, the driver will send anonymous usage statistics to the server it connects to if the server requests those.
-
tryTcpFastOpen
boolean tryTcpFastOpen
Defines whether the driver should try using TCP Fast Open if the runtime supports it. This option is ignored when the conditions described inConfig.ConfigBuilder.withTryTcpFastOpen(boolean)
are not met.This option is experimental.
- Since:
- 6.0.0
-
userAgent
String userAgent
The user_agent configured for this driver.
-
-
Class org.neo4j.driver.Config.TrustStrategy
class TrustStrategy extends Object implements Serializable- serialVersionUID:
- -1631888096243987740L
-
Serialized Fields
-
certFiles
List<File> certFiles
The configured certificate files. -
hostnameVerificationEnabled
boolean hostnameVerificationEnabled
The flag indicating if hostname verification is enabled for this trust strategy. -
revocationCheckingStrategy
RevocationCheckingStrategy revocationCheckingStrategy
The revocation strategy used for verifying certificates. -
strategy
Config.TrustStrategy.Strategy strategy
The strategy type.
-
-
Class org.neo4j.driver.QueryConfig
class QueryConfig extends Object implements Serializable- serialVersionUID:
- -2632780731598141754L
-
Serialized Fields
-
bookmarkManager
BookmarkManager bookmarkManager
The bookmark manager. -
database
String database
The target database. -
impersonatedUser
String impersonatedUser
The impersonated user. -
metadata
Map<String,
Serializable> metadata The transaction metadata.- Since:
- 5.16
-
routing
RoutingControl routing
The routing mode. -
timeout
Duration timeout
The transaction timeout.- Since:
- 5.16
-
useDefaultBookmarkManager
boolean useDefaultBookmarkManager
The flag indicating if default bookmark manager should be used.
-
-
Class org.neo4j.driver.SessionConfig
class SessionConfig extends Object implements Serializable- serialVersionUID:
- 5773462156979050657L
-
Serialized Fields
-
bookmarkManager
BookmarkManager bookmarkManager
The bookmark manager. -
bookmarks
Iterable<Bookmark> bookmarks
The initial bookmarks. -
database
String database
The target database name. -
defaultAccessMode
AccessMode defaultAccessMode
The default type of access. -
fetchSize
Long fetchSize
The fetch size. -
impersonatedUser
String impersonatedUser
The impersonated user. -
notificationConfig
NotificationConfig notificationConfig
The notification config.
-
-
Class org.neo4j.driver.TransactionConfig
class TransactionConfig extends Object implements Serializable- serialVersionUID:
- -7954949878657177280L
-
-
Package org.neo4j.driver.exceptions
-
Exception Class org.neo4j.driver.exceptions.AuthenticationException
class AuthenticationException extends SecurityException implements Serializable- serialVersionUID:
- 1324352999966240271L
-
Exception Class org.neo4j.driver.exceptions.AuthorizationExpiredException
class AuthorizationExpiredException extends SecurityException implements Serializable- serialVersionUID:
- 5688002170978405558L
-
Exception Class org.neo4j.driver.exceptions.AuthTokenManagerExecutionException
class AuthTokenManagerExecutionException extends ClientException implements Serializable- serialVersionUID:
- -5964665406806723214L
-
Exception Class org.neo4j.driver.exceptions.ClientException
class ClientException extends Neo4jException implements Serializable- serialVersionUID:
- -6732913155228185887L
-
Exception Class org.neo4j.driver.exceptions.ConnectionReadTimeoutException
class ConnectionReadTimeoutException extends ServiceUnavailableException implements Serializable- serialVersionUID:
- -9222586212813330140L
-
Exception Class org.neo4j.driver.exceptions.DatabaseException
class DatabaseException extends Neo4jException implements Serializable- serialVersionUID:
- 4591061578560201032L
-
Exception Class org.neo4j.driver.exceptions.DiscoveryException
class DiscoveryException extends Neo4jException implements Serializable- serialVersionUID:
- 6711564351333659090L
-
Exception Class org.neo4j.driver.exceptions.FatalDiscoveryException
class FatalDiscoveryException extends ClientException implements Serializable- serialVersionUID:
- -2831830142554054420L
-
Exception Class org.neo4j.driver.exceptions.Neo4jException
class Neo4jException extends RuntimeException implements Serializable- serialVersionUID:
- -80579062276712567L
-
Serialized Fields
-
classification
GqlStatusErrorClassification classification
The GQLSTATUS error classification.- Since:
- 5.26.0
-
code
String code
The code value. -
diagnosticRecord
Map<String,
Value> diagnosticRecord The diagnostic record.- Since:
- 5.26.0
-
gqlStatus
String gqlStatus
The GQLSTATUS as defined by the GQL standard.- Since:
- 5.26.0
-
rawClassification
String rawClassification
The GQLSTATUS error classification as raw String.- Since:
- 5.26.0
-
statusDescription
String statusDescription
The GQLSTATUS description.- Since:
- 5.26.0
-
-
Exception Class org.neo4j.driver.exceptions.NoSuchRecordException
class NoSuchRecordException extends NoSuchElementException implements Serializable- serialVersionUID:
- 9091962868264042491L
-
Exception Class org.neo4j.driver.exceptions.ProtocolException
class ProtocolException extends Neo4jException implements Serializable- serialVersionUID:
- -6806924452045883275L
-
Exception Class org.neo4j.driver.exceptions.ResultConsumedException
class ResultConsumedException extends ClientException implements Serializable- serialVersionUID:
- 944999841543178703L
-
Exception Class org.neo4j.driver.exceptions.SecurityException
class SecurityException extends ClientException implements Serializable- serialVersionUID:
- -5964665406806523214L
-
Exception Class org.neo4j.driver.exceptions.SecurityRetryableException
class SecurityRetryableException extends SecurityException implements Serializable- serialVersionUID:
- 3914900631374208080L
-
Serialized Fields
-
exception
SecurityException exception
The original security exception.
-
-
Exception Class org.neo4j.driver.exceptions.SessionExpiredException
class SessionExpiredException extends Neo4jException implements Serializable- serialVersionUID:
- 843176371236755724L
-
Exception Class org.neo4j.driver.exceptions.TokenExpiredException
class TokenExpiredException extends SecurityException implements Serializable- serialVersionUID:
- -5593851859769531234L
-
Exception Class org.neo4j.driver.exceptions.TransactionNestingException
class TransactionNestingException extends ClientException implements Serializable- serialVersionUID:
- -8264319542004457065L
-
Exception Class org.neo4j.driver.exceptions.TransactionTerminatedException
class TransactionTerminatedException extends ClientException implements Serializable- serialVersionUID:
- 7639191706067500206L
-
Exception Class org.neo4j.driver.exceptions.TransientException
class TransientException extends Neo4jException implements Serializable- serialVersionUID:
- -2744576986358599923L
-
Exception Class org.neo4j.driver.exceptions.UnsupportedFeatureException
class UnsupportedFeatureException extends ClientException implements Serializable- serialVersionUID:
- 1161333003602398544L
-
Exception Class org.neo4j.driver.exceptions.UntrustedServerException
class UntrustedServerException extends RuntimeException implements Serializable- serialVersionUID:
- 3196604305660766197L
-
-
Package org.neo4j.driver.exceptions.value
-
Exception Class org.neo4j.driver.exceptions.value.LossyCoercion
class LossyCoercion extends ValueException implements Serializable- serialVersionUID:
- -6259981390929065201L
-
Exception Class org.neo4j.driver.exceptions.value.NotMultiValued
class NotMultiValued extends ValueException implements Serializable- serialVersionUID:
- -7380569883011364090L
-
Exception Class org.neo4j.driver.exceptions.value.Uncoercible
class Uncoercible extends ValueException implements Serializable- serialVersionUID:
- -6259981390929065201L
-
Exception Class org.neo4j.driver.exceptions.value.Unsizable
class Unsizable extends ValueException implements Serializable- serialVersionUID:
- 741487155344252339L
-
Exception Class org.neo4j.driver.exceptions.value.ValueException
class ValueException extends ClientException implements Serializable- serialVersionUID:
- -1269336313727174998L
-
-
Package org.neo4j.driver.internal.logging
-
Class org.neo4j.driver.internal.logging.ConsoleLogging
class ConsoleLogging extends Object implements Serializable- serialVersionUID:
- 9205935204074879150L
-
Serialized Fields
-
level
Level level
-
-
Class org.neo4j.driver.internal.logging.DevNullLogging
class DevNullLogging extends Object implements Serializable- serialVersionUID:
- -2632752338512373821L
-
Serialization Methods
-
readResolve
-
-
Class org.neo4j.driver.internal.logging.JULogging
class JULogging extends Object implements Serializable- serialVersionUID:
- -1145576859241657833L
-
Serialized Fields
-
loggingLevel
Level loggingLevel
-
-
Class org.neo4j.driver.internal.logging.Slf4jLogging
class Slf4jLogging extends Object implements Serializable- serialVersionUID:
- 4120390028025944991L
-
Class org.neo4j.driver.internal.logging.SystemLogging
class SystemLogging extends Object implements Serializable- serialVersionUID:
- -2244895422671419713L
-
-
Package org.neo4j.driver.internal.retry
-
Record Class org.neo4j.driver.internal.retry.RetrySettings
class RetrySettings extends Record implements Serializable- serialVersionUID:
- -2895062473220745239L
-
Serialized Fields
-
maxRetryTimeMs
long maxRetryTimeMs
The field for themaxRetryTimeMs
record component.
-
-
-
Package org.neo4j.driver.net