Uses of Class
com.nimbusds.oauth2.sdk.AuthorizationResponse
-
Packages that use AuthorizationResponse 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 AuthorizationResponse in com.nimbusds.oauth2.sdk
Subclasses of AuthorizationResponse in com.nimbusds.oauth2.sdk Modifier and Type Class Description class
AuthorizationErrorResponse
Authorisation error response.class
AuthorizationSuccessResponse
Authorisation success response.Methods in com.nimbusds.oauth2.sdk that return AuthorizationResponse Modifier and Type Method Description static AuthorizationResponse
AuthorizationResponse. parse(HTTPRequest httpRequest)
Parses an authorisation response from the specified HTTP request at the client redirection (callback) URI.static AuthorizationResponse
AuthorizationResponse. 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 AuthorizationResponse
AuthorizationResponse. parse(HTTPResponse httpResponse)
Parses an authorisation response from the specified initial HTTP 302 redirect response output at the authorisation endpoint.static AuthorizationResponse
AuthorizationResponse. 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 AuthorizationResponse
AuthorizationResponse. parse(URI uri)
Parses an authorisation response.static AuthorizationResponse
AuthorizationResponse. parse(URI uri, JARMValidator jarmValidator)
Parses and validates a JSON Web Token (JWT) secured authorisation response.static AuthorizationResponse
AuthorizationResponse. parse(URI redirectURI, Map<String,List<String>> params)
Parses an authorisation response.static AuthorizationResponse
AuthorizationResponse. parse(URI redirectURI, Map<String,List<String>> params, JARMValidator jarmValidator)
Parses an authorisation response which may be JSON Web Token (JWT) secured. -
Uses of AuthorizationResponse in com.nimbusds.oauth2.sdk.jarm
Methods in com.nimbusds.oauth2.sdk.jarm with parameters of type AuthorizationResponse Modifier and Type Method Description static com.nimbusds.jwt.JWTClaimsSet
JARMUtils. toJWTClaimsSet(Issuer iss, ClientID aud, Date exp, AuthorizationResponse response)
Creates a JSON Web Token (JWT) claims set for the specified authorisation success response. -
Uses of AuthorizationResponse in com.nimbusds.openid.connect.sdk
Subclasses of AuthorizationResponse in com.nimbusds.openid.connect.sdk Modifier and Type Class Description class
AuthenticationErrorResponse
OpenID Connect authentication error response.class
AuthenticationSuccessResponse
OpenID Connect authentication success response.
-