@Immutable public class AuthenticationErrorResponse extends AuthorizationErrorResponse implements AuthenticationResponse
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 |
---|
AuthenticationErrorResponse(URI redirectURI,
ErrorObject error,
ResponseType rt,
State state)
Creates a new OpenID Connect authentication error response.
|
Modifier and Type | Method and Description |
---|---|
static Set<ErrorObject> |
getStandardErrors()
Gets the standard errors for an OpenID Connect authentication error
response.
|
static AuthenticationErrorResponse |
parse(HTTPResponse httpResponse)
Parses an OpenID Connect authentication error response from the
specified HTTP response.
|
static AuthenticationErrorResponse |
parse(URI uri)
Parses an OpenID Connect authentication error response from the
specified URI.
|
static AuthenticationErrorResponse |
parse(URI redirectURI,
Map<String,String> params)
Parses an OpenID Connect authentication error response from the
specified redirection URI and parameters.
|
URI |
toURI()
Returns the URI representation (redirection URI + fragment / query
string) of this authorisation response.
|
getErrorObject, getResponseType, toParameters
getRedirectionURI, getState, toHTTPResponse
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
toHTTPResponse
public AuthenticationErrorResponse(URI redirectURI, ErrorObject error, ResponseType rt, State state)
redirectURI
- The base redirection URI. Must not be
null
.error
- The error. Should match one of the
standard errors
for an
OpenID Connect authentication 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 URI toURI() throws SerializeException
AuthorizationResponse
Example URI:
http://example.com/cb#access_token=2YotnFZFEjr1zCsicMWpAA &state=xyz &token_type=example &expires_in=3600
toURI
in class AuthorizationErrorResponse
SerializeException
- If this response couldn't be serialised
to a URI.public static AuthenticationErrorResponse parse(URI redirectURI, Map<String,String> params) throws ParseException
redirectURI
- The base redirection 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 authentication error response.public static AuthenticationErrorResponse parse(URI 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 authentication error response.public static AuthenticationErrorResponse 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 authentication error response.Copyright © 2014 NimbusDS. All Rights Reserved.