Uses of Interface
org.neo4j.driver.AuthTokenManager
Package
Description
-
Uses of AuthTokenManager in org.neo4j.driver
Modifier and TypeMethodDescriptionstatic AuthTokenManager
Returns anAuthTokenManager
that manages basicAuthToken
instances.static AuthTokenManager
AuthTokenManagers.basicAsync
(Supplier<CompletionStage<AuthToken>> newTokenStageSupplier) Returns anAuthTokenManager
that manages basicAuthToken
instances.static AuthTokenManager
AuthTokenManagers.bearer
(Supplier<AuthTokenAndExpiration> newTokenSupplier) Returns anAuthTokenManager
that manages bearerAuthToken
instances with UTC expiration timestamp.static AuthTokenManager
AuthTokenManagers.bearerAsync
(Supplier<CompletionStage<AuthTokenAndExpiration>> newTokenStageSupplier) Returns anAuthTokenManager
that manages bearerAuthToken
instances with UTC expiration timestamp.Modifier and TypeMethodDescriptionstatic Driver
GraphDatabase.driver
(String uri, AuthTokenManager authTokenManager) Returns a driver for a Neo4j instance with the default configuration settings and the providedAuthTokenManager
.static Driver
GraphDatabase.driver
(String uri, AuthTokenManager authTokenManager, ClientCertificateManager clientCertificateManager) Returns a driver for a Neo4j instance with the providedAuthTokenManager
andClientCertificateManager
.static Driver
GraphDatabase.driver
(String uri, AuthTokenManager authTokenManager, ClientCertificateManager clientCertificateManager, Config config) Returns a driver for a Neo4j instance with the providedAuthTokenManager
,ClientCertificateManager
and driverConfig
.static Driver
GraphDatabase.driver
(String uri, AuthTokenManager authTokenManager, Config config) Returns a driver for a Neo4j instance with the providedAuthTokenManager
and custom configuration.static Driver
GraphDatabase.driver
(URI uri, AuthTokenManager authTokenManager) Returns a driver for a Neo4j instance with the default configuration settings and the providedAuthTokenManager
.static Driver
GraphDatabase.driver
(URI uri, AuthTokenManager authTokenManager, ClientCertificateManager clientCertificateManager) Returns a driver for a Neo4j instance with the providedAuthTokenManager
andClientCertificateManager
.static Driver
GraphDatabase.driver
(URI uri, AuthTokenManager authTokenManager, ClientCertificateManager clientCertificateManager, Config config) Returns a driver for a Neo4j instance with the providedAuthTokenManager
,ClientCertificateManager
and driverConfig
.static Driver
GraphDatabase.driver
(URI uri, AuthTokenManager authTokenManager, Config config) Returns a driver for a Neo4j instance with the providedAuthTokenManager
and custom configuration. -
Uses of AuthTokenManager in org.neo4j.driver.internal.async
ModifierConstructorDescriptionBoltConnectionWithAuthTokenManager
(BoltConnection delegate, AuthTokenManager authTokenManager) LeakLoggingNetworkSession
(BoltSecurityPlanManager securityPlanManager, BoltConnectionProvider connectionProvider, RetryLogic retryLogic, DatabaseName databaseName, AccessMode mode, Set<Bookmark> bookmarks, String impersonatedUser, long fetchSize, Logging logging, BookmarkManager bookmarkManager, NotificationConfig driverNotificationConfig, NotificationConfig notificationConfig, AuthToken overrideAuthToken, boolean telemetryDisabled, AuthTokenManager authTokenManager) NetworkSession
(BoltSecurityPlanManager securityPlanManager, BoltConnectionProvider boltConnectionProvider, RetryLogic retryLogic, DatabaseName databaseName, AccessMode mode, Set<Bookmark> bookmarks, String impersonatedUser, long fetchSize, Logging logging, BookmarkManager bookmarkManager, NotificationConfig driverNotificationConfig, NotificationConfig notificationConfig, AuthToken overrideAuthToken, boolean telemetryDisabled, AuthTokenManager authTokenManager) -
Uses of AuthTokenManager in org.neo4j.driver.internal.security
Modifier and TypeClassDescriptionclass
class
class
ModifierConstructorDescriptionValidatingAuthTokenManager
(AuthTokenManager delegate, Logging logging)