Uses of Class
com.nimbusds.oauth2.sdk.token.BearerAccessToken
Packages that use BearerAccessToken
Package
Description
OpenID Connect Client Initiated Backchannel Authentication (CIBA) Flow -
Core 1.0 classes.
OAuth 2.0 dynamic client registration.
OAuth 2.0 access and refresh token implementations.
OpenID Connect for Identity Assurance 1.0 evidence attachment classes.
OpenID Connect Relying Party (RP) classes.
-
Uses of BearerAccessToken in com.nimbusds.oauth2.sdk.ciba
Methods in com.nimbusds.oauth2.sdk.ciba that return BearerAccessTokenModifier and TypeMethodDescriptionCIBARequest.getClientNotificationToken()
Returns the client notification token, required for the CIBA ping and push token delivery modes.Methods in com.nimbusds.oauth2.sdk.ciba with parameters of type BearerAccessTokenModifier and TypeMethodDescriptionCIBARequest.Builder.clientNotificationToken
(BearerAccessToken token) Sets the client notification token, required for the CIBA ping and push token delivery modes.Constructors in com.nimbusds.oauth2.sdk.ciba with parameters of type BearerAccessTokenModifierConstructorDescriptionCIBAErrorDelivery
(URI endpoint, BearerAccessToken accessToken, AuthRequestID authRequestID, ErrorObject errorObject) Creates a new CIBA error push delivery.CIBAPingCallback
(URI endpoint, BearerAccessToken accessToken, AuthRequestID authRequestID) Creates a new CIBA ping callback.CIBAPushCallback
(URI endpoint, BearerAccessToken accessToken, AuthRequestID authRequestID) Creates a new CIBA push callback.CIBARequest
(URI endpoint, ClientAuthentication clientAuth, Scope scope, BearerAccessToken clientNotificationToken, List<ACR> acrValues, LoginHintToken loginHintToken, com.nimbusds.jwt.JWT idTokenHint, String loginHint, String bindingMessage, Secret userCode, Integer requestedExpiry, OIDCClaimsRequest claims, List<com.nimbusds.langtag.LangTag> claimsLocales, String purpose, List<AuthorizationDetail> authorizationDetails, List<URI> resources, net.minidev.json.JSONObject requestContext, Map<String, List<String>> customParams) Creates a new CIBA request.CIBARequest
(URI endpoint, ClientAuthentication clientAuth, Scope scope, BearerAccessToken clientNotificationToken, List<ACR> acrValues, String loginHintTokenString, com.nimbusds.jwt.JWT idTokenHint, String loginHint, String bindingMessage, Secret userCode, Integer requestedExpiry, OIDCClaimsRequest claims, List<com.nimbusds.langtag.LangTag> claimsLocales, String purpose, List<AuthorizationDetail> authorizationDetails, List<URI> resources, Map<String, List<String>> customParams) Deprecated.CIBARequest
(URI endpoint, ClientAuthentication clientAuth, Scope scope, BearerAccessToken clientNotificationToken, List<ACR> acrValues, String loginHintTokenString, com.nimbusds.jwt.JWT idTokenHint, String loginHint, String bindingMessage, Secret userCode, Integer requestedExpiry, OIDCClaimsRequest claims, List<com.nimbusds.langtag.LangTag> claimsLocales, String purpose, List<URI> resources, Map<String, List<String>> customParams) Deprecated.CIBARequest
(URI endpoint, ClientAuthentication clientAuth, Scope scope, BearerAccessToken clientNotificationToken, List<ACR> acrValues, String loginHintTokenString, com.nimbusds.jwt.JWT idTokenHint, String loginHint, String bindingMessage, Secret userCode, Integer requestedExpiry, OIDCClaimsRequest claims, Map<String, List<String>> customParams) Deprecated.CIBARequest
(URI endpoint, ClientAuthentication clientAuth, Scope scope, BearerAccessToken clientNotificationToken, List<ACR> acrValues, String loginHintTokenString, com.nimbusds.jwt.JWT idTokenHint, String loginHint, String bindingMessage, Secret userCode, Integer requestedExpiry, Map<String, List<String>> customParams) Deprecated.CIBATokenDelivery
(URI endpoint, BearerAccessToken accessToken, AuthRequestID authRequestID, Tokens tokens) Creates a new CIBA push token delivery for OAuth 2.0.CIBATokenDelivery
(URI endpoint, BearerAccessToken accessToken, AuthRequestID authRequestID, OIDCTokens oidcTokens) Creates a new CIBA push token delivery for OpenID Connect. -
Uses of BearerAccessToken in com.nimbusds.oauth2.sdk.client
Methods in com.nimbusds.oauth2.sdk.client that return BearerAccessTokenModifier and TypeMethodDescriptionClientInformation.getRegistrationAccessToken()
Gets the registration access token.static BearerAccessToken
ClientCredentialsParser.parseRegistrationAccessToken
(net.minidev.json.JSONObject jsonObject) Parses a client registration access token from the specified JSON object.Constructors in com.nimbusds.oauth2.sdk.client with parameters of type BearerAccessTokenModifierConstructorDescriptionClientDeleteRequest
(URI endpoint, BearerAccessToken accessToken) Creates a new client delete request.ClientInformation
(ClientID id, Date issueDate, ClientMetadata metadata, Secret secret, URI registrationURI, BearerAccessToken accessToken) Creates a new client information instance permitting dynamic client registration management.ClientReadRequest
(URI endpoint, BearerAccessToken accessToken) Creates a new client read request.ClientRegistrationRequest
(URI endpoint, ClientMetadata metadata, com.nimbusds.jwt.SignedJWT softwareStatement, BearerAccessToken accessToken) Creates a new client registration request with an optional software statement.ClientRegistrationRequest
(URI endpoint, ClientMetadata metadata, BearerAccessToken accessToken) Creates a new client registration request.ClientUpdateRequest
(URI endpoint, ClientID id, BearerAccessToken accessToken, ClientMetadata metadata, Secret secret) Creates a new client update request. -
Uses of BearerAccessToken in com.nimbusds.oauth2.sdk.token
Methods in com.nimbusds.oauth2.sdk.token that return BearerAccessTokenModifier and TypeMethodDescriptionTokens.getBearerAccessToken()
Returns the access token as type bearer.static BearerAccessToken
BearerAccessToken.parse
(HTTPRequest request) Parses an HTTP request for a bearer access token.static BearerAccessToken
Parses an HTTP Authorization header for a bearer access token.static BearerAccessToken
Parses a query or form parameters map for a bearer access token.static BearerAccessToken
BearerAccessToken.parse
(net.minidev.json.JSONObject jsonObject) Parses a bearer access token from a JSON object access token response. -
Uses of BearerAccessToken in com.nimbusds.openid.connect.sdk.assurance.evidences.attachment
Methods in com.nimbusds.openid.connect.sdk.assurance.evidences.attachment that return BearerAccessTokenModifier and TypeMethodDescriptionExternalAttachment.getBearerAccessToken()
Returns the optional access token of type Bearer for retrieving the attachment.Constructors in com.nimbusds.openid.connect.sdk.assurance.evidences.attachment with parameters of type BearerAccessTokenModifierConstructorDescriptionExternalAttachment
(URI url, BearerAccessToken accessToken, long expiresIn, Digest digest, String description) Creates a new external attachment. -
Uses of BearerAccessToken in com.nimbusds.openid.connect.sdk.rp
Constructors in com.nimbusds.openid.connect.sdk.rp with parameters of type BearerAccessTokenModifierConstructorDescriptionOIDCClientInformation
(ClientID id, Date issueDate, OIDCClientMetadata metadata, Secret secret, URI registrationURI, BearerAccessToken accessToken) Creates a new OpenID Connect client information instance permitting dynamic client registration management.OIDCClientRegistrationRequest
(URI endpoint, OIDCClientMetadata metadata, com.nimbusds.jwt.SignedJWT softwareStatement, BearerAccessToken accessToken) Creates a new OpenID Connect client registration request with an optional software statement.OIDCClientRegistrationRequest
(URI endpoint, OIDCClientMetadata metadata, BearerAccessToken accessToken) Creates a new OpenID Connect client registration request.OIDCClientUpdateRequest
(URI endpoint, ClientID id, BearerAccessToken accessToken, OIDCClientMetadata metadata, Secret secret) Creates a new OpenID Connect client update request.