Uses of Interface
oracle.jdbc.AccessToken
-
Packages that use AccessToken Package Description oracle.jdbc Beginning in Oracle9i, the Oracle extensions to JDBC are captured in the packageoracle.jdbc
.oracle.jdbc.datasource Beginning in Oracle Release 12.2, some of the Oracle extensions to JDBC are captured in the packageoracle.jdbc.datasource
.oracle.jdbc.datasource.impl This package holds data source and connection builder classes that implement the Oracle JDBC extension interfaces in theoracle.jdbc.datasource
andoracle.jdbc
packages.oracle.jdbc.spi -
-
Uses of AccessToken in oracle.jdbc
Methods in oracle.jdbc that return AccessToken Modifier and Type Method Description static AccessToken
AccessToken. createJsonWebToken(char[] token)
Creates anAccessToken
representing a JSON Web Token (JWT).static AccessToken
AccessToken. createJsonWebToken(char[] token, java.security.PrivateKey privateKey)
Creates anAccessToken
representing a JSON Web Token (JWT) that requires proof of possession (PoP) of aprivateKey
.Methods in oracle.jdbc that return types with arguments of type AccessToken Modifier and Type Method Description static java.util.function.Supplier<? extends AccessToken>
AccessToken. createJsonWebTokenCache(java.util.function.Supplier<? extends AccessToken> tokenSupplier)
Returns aSupplier
that caches access tokens generated by atokenSupplier
.Methods in oracle.jdbc with parameters of type AccessToken Modifier and Type Method Description OracleConnectionBuilder
OracleConnectionBuilder. accessToken(AccessToken accessToken)
Specifies theaccessToken
to be used when creating a connection.Method parameters in oracle.jdbc with type arguments of type AccessToken Modifier and Type Method Description static java.util.function.Supplier<? extends AccessToken>
AccessToken. createJsonWebTokenCache(java.util.function.Supplier<? extends AccessToken> tokenSupplier)
Returns aSupplier
that caches access tokens generated by atokenSupplier
. -
Uses of AccessToken in oracle.jdbc.datasource
Method parameters in oracle.jdbc.datasource with type arguments of type AccessToken Modifier and Type Method Description void
OracleCommonDataSource. setTokenSupplier(java.util.function.Supplier<? extends AccessToken> tokenSupplier)
Sets a supplier function that generates an access token when creating a connection with thisDataSource
. -
Uses of AccessToken in oracle.jdbc.datasource.impl
Method parameters in oracle.jdbc.datasource.impl with type arguments of type AccessToken Modifier and Type Method Description void
OracleDataSource. setTokenSupplier(java.util.function.Supplier<? extends AccessToken> tokenSupplier)
-
Uses of AccessToken in oracle.jdbc.spi
Methods in oracle.jdbc.spi that return AccessToken Modifier and Type Method Description AccessToken
AccessTokenProvider. getAccessToken(java.util.Map<OracleResourceProvider.Parameter,java.lang.CharSequence> parameterValues)
Returns a OAUTH access token that authorizes logins to Oracle Database.
-