@Immutable public class OIDCAuthorizationErrorResponse extends AuthorizationErrorResponse implements OIDCAuthorizationResponse
Standard errors:
Example HTTP response:
HTTP/1.1 302 Found
Location: https://client.example.org/cb?
error=invalid_request
&error_description=the%20request%20is%20not%20valid%20or%20malformed
&state=af0ifjsldkj
Related specifications:
| Constructor and Description |
|---|
OIDCAuthorizationErrorResponse(URL redirectURI,
ErrorObject error,
ResponseType rt,
State state)
Creates a new OpenID Connect authorisation error response.
|
| Modifier and Type | Method and Description |
|---|---|
static Set<ErrorObject> |
getStandardErrors()
Gets the standard errors for an OpenID Connect Authorisation error
response.
|
static OIDCAuthorizationErrorResponse |
parse(HTTPResponse httpResponse)
Parses an OpenID Connect authorisation error response from the
specified HTTP response.
|
static OIDCAuthorizationErrorResponse |
parse(URL uri)
Parses an OpenID Connect authorisation error response from the
specified URI.
|
static OIDCAuthorizationErrorResponse |
parse(URL redirectURI,
Map<String,String> params)
Parses an OpenID Connect authorisation error response from the
specified redirect URI and parameters.
|
getErrorObject, getResponseType, toParameters, toURIgetRedirectionURI, getState, toHTTPResponseclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waittoHTTPResponsepublic OIDCAuthorizationErrorResponse(URL redirectURI, ErrorObject error, ResponseType rt, State state)
redirectURI - The base redirect URI. Must not be null.error - The error. Should match one of the
standard errors for an
OpenID Connect authorisation error response. Must
not be null.rt - The response type, used to determine the redirect
URI composition. If unknown null.state - The state, null if not requested.public static Set<ErrorObject> getStandardErrors()
public static OIDCAuthorizationErrorResponse parse(URL redirectURI, Map<String,String> params) throws ParseException
redirectURI - The base redirect URI. Must not be null.params - The response parameters to parse. Must not be
null.ParseException - If the parameters couldn't be parsed to an
OpenID Connect authorisation error response.public static OIDCAuthorizationErrorResponse parse(URL uri) throws ParseException
Example URI:
https://client.example.com/cb? error=invalid_request &error_description=the%20request%20is%20not%20valid%20or%20malformed &state=af0ifjsldkj
uri - The URI to parse. Can be absolute or relative. Must not
be null.ParseException - If the URI couldn't be parsed to an OpenID
Connect authorisation error response.public static OIDCAuthorizationErrorResponse parse(HTTPResponse httpResponse) throws ParseException
Example HTTP response:
HTTP/1.1 302 Found Location: https://client.example.com/cb? error=invalid_request &error_description=the%20request%20is%20not%20valid%20or%20malformed &state=af0ifjsldkj
httpResponse - The HTTP response to parse. Must not be
null.ParseException - If the HTTP response couldn't be parsed to an
OpenID Connect authorisation error response.Copyright © 2013 NimbusDS. All Rights Reserved.