Uses of Class
com.nimbusds.oauth2.sdk.token.DPoPTokenError
-
Packages that use DPoPTokenError Package Description com.nimbusds.oauth2.sdk.token OAuth 2.0 access and refresh token implementations. -
-
Uses of DPoPTokenError in com.nimbusds.oauth2.sdk.token
Fields in com.nimbusds.oauth2.sdk.token declared as DPoPTokenError Modifier and Type Field Description static DPoPTokenError
DPoPTokenError. INSUFFICIENT_SCOPE
The request requires higher privileges than provided by the access token.static DPoPTokenError
DPoPTokenError. INVALID_DPOP_PROOF
The request has a DPoP proof that is invalid.static DPoPTokenError
DPoPTokenError. INVALID_REQUEST
The request is missing a required parameter, includes an unsupported parameter or parameter value, repeats the same parameter, uses more than one method for including an access token, or is otherwise malformed.static DPoPTokenError
DPoPTokenError. INVALID_TOKEN
The access token provided is expired, revoked, malformed, or invalid for other reasons.static DPoPTokenError
DPoPTokenError. MISSING_TOKEN
The request does not contain an access token.Methods in com.nimbusds.oauth2.sdk.token that return DPoPTokenError Modifier and Type Method Description DPoPTokenError
DPoPTokenError. appendDescription(String text)
static DPoPTokenError
DPoPTokenError. parse(String wwwAuth)
Parses an OAuth 2.0 DPoP token error from the specified HTTP responseWWW-Authenticate
header.DPoPTokenError
DPoPTokenError. setDescription(String description)
DPoPTokenError
DPoPTokenError. setHTTPStatusCode(int httpStatusCode)
DPoPTokenError
DPoPTokenError. setJWSAlgorithms(Set<com.nimbusds.jose.JWSAlgorithm> jwsAlgs)
Sets the acceptable JWS algorithms.DPoPTokenError
DPoPTokenError. setRealm(String realm)
DPoPTokenError
DPoPTokenError. setScope(Scope scope)
DPoPTokenError
DPoPTokenError. setURI(URI uri)
-