Uses of Class
com.nimbusds.oauth2.sdk.jarm.JARMValidator
-
Packages that use JARMValidator Package Description com.nimbusds.oauth2.sdk Classes for representing, serialising and parsing OAuth 2.0 client requests and authorisation server responses.com.nimbusds.oauth2.sdk.jarm JWT Secured Authorization Response Mode for OAuth 2.0 (JARM) utilities.com.nimbusds.openid.connect.sdk Classes for representing, serialising and parsing OpenID Connect client requests and server responses. -
-
Uses of JARMValidator in com.nimbusds.oauth2.sdk
Methods in com.nimbusds.oauth2.sdk with parameters of type JARMValidator Modifier and Type Method Description static AuthorizationResponseAuthorizationResponse. parse(HTTPRequest httpRequest, JARMValidator jarmValidator)Parses and validates a JSON Web Token (JWT) secured authorisation response from the specified HTTP request at the client redirection (callback) URI.static AuthorizationResponseAuthorizationResponse. parse(HTTPResponse httpResponse, JARMValidator jarmValidator)Parses and validates a JSON Web Token (JWT) secured authorisation response from the specified initial HTTP 302 redirect response output at the authorisation endpoint.static AuthorizationResponseAuthorizationResponse. parse(URI uri, JARMValidator jarmValidator)Parses and validates a JSON Web Token (JWT) secured authorisation response.static AuthorizationResponseAuthorizationResponse. parse(URI redirectURI, Map<String,List<String>> params, JARMValidator jarmValidator)Parses an authorisation response which may be JSON Web Token (JWT) secured. -
Uses of JARMValidator in com.nimbusds.oauth2.sdk.jarm
Methods in com.nimbusds.oauth2.sdk.jarm that return JARMValidator Modifier and Type Method Description static JARMValidatorJARMValidator. create(AuthorizationServerMetadata asMetadata, ClientInformation clientInfo)Creates a new JARM validator for the specified Authorisation Server metadata and OAuth 2.0 client registration.static JARMValidatorJARMValidator. create(AuthorizationServerMetadata asMetadata, ClientInformation clientInfo, com.nimbusds.jose.jwk.source.JWKSource clientJWKSource)Creates a new JARM validator for the specified Authorisation Server metadata and OAuth 2.0 client registration.static JARMValidatorJARMValidator. create(Issuer issuer, ClientInformation clientInfo)Creates a new JARM validator for the specified Authorisation Server or OpenID Provider, which must publish its metadata at[issuer-url]/.well-known/oauth-authorization-serverresp.static JARMValidatorJARMValidator. create(Issuer issuer, ClientInformation clientInfo, com.nimbusds.jose.jwk.source.JWKSource clientJWKSource, int connectTimeout, int readTimeout)Creates a new JARM validator for the specified Authorisation Server or OpenID Provider, which must publish its metadata at[issuer-url]/.well-known/oauth-authorization-serverresp. -
Uses of JARMValidator in com.nimbusds.openid.connect.sdk
Methods in com.nimbusds.openid.connect.sdk with parameters of type JARMValidator Modifier and Type Method Description static AuthenticationResponseAuthenticationResponseParser. parse(HTTPRequest httpRequest, JARMValidator jarmValidator)Parses and validates a JSON Web Token (JWT) secured OpenID Connect authentication response from the specified HTTP request at the client redirection (callback) URI.static AuthenticationResponseAuthenticationResponseParser. parse(HTTPResponse httpResponse, JARMValidator jarmValidator)Parses and validates a JSON Web Token (JWT) secured OpenID Connect authentication response from the specified initial HTTP 302 redirect response output at the authorisation endpoint.static AuthenticationResponseAuthenticationResponseParser. parse(URI uri, JARMValidator jarmValidator)Parses and validates a JSON Web Token (JWT) secured OpenID Connect authentication response.static AuthenticationResponseAuthenticationResponseParser. parse(URI redirectURI, Map<String,List<String>> params, JARMValidator jarmValidator)Parses an OpenID Connect authentication response which may be JSON Web Token (JWT) secured.
-