Uses of Interface
org.neo4j.driver.AuthTokenManager
Packages that use AuthTokenManager
Package
Description
-
Uses of AuthTokenManager in org.neo4j.driver
Methods in org.neo4j.driver that return AuthTokenManagerModifier 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.Methods in org.neo4j.driver with parameters of type AuthTokenManagerModifier 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.adaptedbolt
Constructors in org.neo4j.driver.internal.adaptedbolt with parameters of type AuthTokenManagerModifierConstructorDescriptionBoltAuthTokenManager
(AuthTokenManager authTokenManager, BoltValueFactory valueFactory, ErrorMapper errorMapper) -
Uses of AuthTokenManager in org.neo4j.driver.internal.async
Constructors in org.neo4j.driver.internal.async with parameters of type AuthTokenManagerModifierConstructorDescriptionLeakLoggingNetworkSession
(DriverBoltConnectionSource connectionProvider, RetryLogic retryLogic, org.neo4j.bolt.connection.DatabaseName databaseName, AccessMode mode, Set<Bookmark> bookmarks, String impersonatedUser, long fetchSize, Logging logging, BookmarkManager bookmarkManager, NotificationConfig notificationConfig, AuthToken overrideAuthToken, boolean telemetryDisabled, AuthTokenManager authTokenManager, HomeDatabaseCache homeDatabaseCache) NetworkSession
(DriverBoltConnectionSource boltConnectionProvider, RetryLogic retryLogic, org.neo4j.bolt.connection.DatabaseName databaseName, AccessMode mode, Set<Bookmark> bookmarks, String impersonatedUser, long fetchSize, Logging logging, BookmarkManager bookmarkManager, NotificationConfig notificationConfig, AuthToken overrideAuthToken, boolean telemetryDisabled, AuthTokenManager authTokenManager, HomeDatabaseCache homeDatabaseCache) -
Uses of AuthTokenManager in org.neo4j.driver.internal.security
Classes in org.neo4j.driver.internal.security that implement AuthTokenManagerModifier and TypeClassDescriptionclass
class
class
Constructors in org.neo4j.driver.internal.security with parameters of type AuthTokenManagerModifierConstructorDescriptionValidatingAuthTokenManager
(AuthTokenManager delegate, Logging logging)