Uses of Class
com.nimbusds.oauth2.sdk.auth.PrivateKeyJWT
-
Packages that use PrivateKeyJWT Package Description com.nimbusds.oauth2.sdk.auth Implementations of OAuth 2.0 client authentication methods at the Token endpoint.com.nimbusds.openid.connect.sdk Classes for representing, serialising and parsing OpenID Connect client requests and server responses. -
-
Uses of PrivateKeyJWT in com.nimbusds.oauth2.sdk.auth
Methods in com.nimbusds.oauth2.sdk.auth that return PrivateKeyJWT Modifier and Type Method Description static PrivateKeyJWT
PrivateKeyJWT. parse(HTTPRequest httpRequest)
Parses the specified HTTP POST request for a private key JSON Web Token (JWT) authentication.static PrivateKeyJWT
PrivateKeyJWT. parse(String paramsString)
Parses a private key JSON Web Token (JWT) authentication from the specifiedapplication/x-www-form-urlencoded
encoded parameters string.static PrivateKeyJWT
PrivateKeyJWT. parse(Map<String,List<String>> params)
Parses the specified parameters map for a private key JSON Web Token (JWT) authentication. -
Uses of PrivateKeyJWT in com.nimbusds.openid.connect.sdk
Methods in com.nimbusds.openid.connect.sdk that return PrivateKeyJWT Modifier and Type Method Description PrivateKeyJWT
AuthenticationRequest. getPrivateKeyJWTAuthentication()
Gets the private key JWT authentication for automatic OpenID Connect federation.Methods in com.nimbusds.openid.connect.sdk with parameters of type PrivateKeyJWT Modifier and Type Method Description AuthenticationRequest.Builder
AuthenticationRequest.Builder. privateKeyJWTAuthentication(PrivateKeyJWT privateKeyJWTAuth)
Sets the private key JWT authentication for automatic OpenID Connect federation.Constructors in com.nimbusds.openid.connect.sdk with parameters of type PrivateKeyJWT Constructor Description AuthenticationRequest(URI uri, ResponseType rt, ResponseMode rm, Scope scope, ClientID clientID, URI redirectURI, State state, Nonce nonce, Display display, Prompt prompt, int maxAge, List<com.nimbusds.langtag.LangTag> uiLocales, List<com.nimbusds.langtag.LangTag> claimsLocales, com.nimbusds.jwt.JWT idTokenHint, String loginHint, List<ACR> acrValues, ClaimsRequest claims, String purpose, PrivateKeyJWT privateKeyJWTAuth, com.nimbusds.jwt.JWT requestObject, URI requestURI, CodeChallenge codeChallenge, CodeChallengeMethod codeChallengeMethod, List<URI> resources, boolean includeGrantedScopes, Map<String,List<String>> customParams)
Creates a new OpenID Connect authentication request with extension and custom parameters.
-