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 classAuthorizationErrorResponseAuthorisation error response.classAuthorizationSuccessResponseAuthorisation success response.Methods in com.nimbusds.oauth2.sdk that return AuthorizationResponse Modifier and Type Method Description static AuthorizationResponseAuthorizationResponse. parse(HTTPRequest httpRequest)Parses an authorisation response from the specified HTTP request at the client redirection (callback) URI.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)Parses an authorisation response from the specified initial HTTP 302 redirect response output at the authorisation endpoint.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)Parses an authorisation response.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)Parses an 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 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.JWTClaimsSetJARMUtils. 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 classAuthenticationErrorResponseOpenID Connect authentication error response.classAuthenticationSuccessResponseOpenID Connect authentication success response.
-