Uses of Class
com.nimbusds.oauth2.sdk.ParseException
-
Packages that use ParseException 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.as OAuth 2.0 Authorisation Server (AS) classes.com.nimbusds.oauth2.sdk.assertions.jwt JWT bearer assertions.com.nimbusds.oauth2.sdk.assertions.saml2 SAML 2.0 bearer assertions.com.nimbusds.oauth2.sdk.auth Implementations of OAuth 2.0 client authentication methods at the Token endpoint.com.nimbusds.oauth2.sdk.client OAuth 2.0 dynamic client registration.com.nimbusds.oauth2.sdk.device OAuth 2.0 device authorisation grant classes.com.nimbusds.oauth2.sdk.http HTTP message and utility classes.com.nimbusds.oauth2.sdk.id Common OAuth 2.0 identifier and identity classes.com.nimbusds.oauth2.sdk.jarm JWT Secured Authorization Response Mode for OAuth 2.0 (JARM) utilities.com.nimbusds.oauth2.sdk.pkce Proof Key for Code Exchange (PKCE) classes.com.nimbusds.oauth2.sdk.token OAuth 2.0 access and refresh token implementations.com.nimbusds.oauth2.sdk.util Common utility classes.com.nimbusds.oauth2.sdk.util.date Date / time utilities.com.nimbusds.openid.connect.sdk Classes for representing, serialising and parsing OpenID Connect client requests and server responses.com.nimbusds.openid.connect.sdk.assurance OpenID Connect for identity assurance.com.nimbusds.openid.connect.sdk.assurance.claims Identity assurance claims.com.nimbusds.openid.connect.sdk.assurance.evidences Identity evidence classes.com.nimbusds.openid.connect.sdk.claims Claims and claim sets used in OpenID Connect.com.nimbusds.openid.connect.sdk.op OpenID Connect Provider (OP) classes.com.nimbusds.openid.connect.sdk.rp OpenID Connect Relying Party (RP) classes.com.nimbusds.openid.connect.sdk.token OpenID Connect token extensions. -
-
Uses of ParseException in com.nimbusds.oauth2.sdk
Fields in com.nimbusds.oauth2.sdk declared as ParseException Modifier and Type Field Description protected static ParseExceptionAssertionGrant. MISSING_ASSERTION_PARAM_EXCEPTIONCaches missingassertionparameter exception.protected static ParseExceptionAssertionGrant. MISSING_GRANT_TYPE_PARAM_EXCEPTIONCached missinggrant_typeparameter exception.Methods in com.nimbusds.oauth2.sdk that throw ParseException Modifier and Type Method Description booleanTokenIntrospectionSuccessResponse. getBooleanParameter(String name)Returns the boolean parameter with the specified name.static AccessTokenResponseAccessTokenResponse. parse(HTTPResponse httpResponse)Parses an access token response from the specified HTTP response.static AccessTokenResponseAccessTokenResponse. parse(net.minidev.json.JSONObject jsonObject)Parses an access token response from the specified JSON object.static AuthorizationCodeGrantAuthorizationCodeGrant. parse(Map<String,List<String>> params)Parses an authorisation code grant from the specified request body parameters.static AuthorizationErrorResponseAuthorizationErrorResponse. parse(HTTPRequest httpRequest)Parses an authorisation error response from the specified HTTP request at the client redirection (callback) URI.static AuthorizationErrorResponseAuthorizationErrorResponse. parse(HTTPResponse httpResponse)Parses an authorisation error response from the specified initial HTTP 302 redirect response generated at the authorisation endpoint.static AuthorizationErrorResponseAuthorizationErrorResponse. parse(URI uri)Parses an authorisation error response.static AuthorizationErrorResponseAuthorizationErrorResponse. parse(URI redirectURI, Map<String,List<String>> params)Parses an authorisation error response.static AuthorizationGrantAuthorizationGrant. parse(Map<String,List<String>> params)Parses an authorisation grant from the specified request body parameters.static AuthorizationRequestAuthorizationRequest. parse(HTTPRequest httpRequest)Parses an authorisation request from the specified HTTP request.static AuthorizationRequestAuthorizationRequest. parse(String query)Parses an authorisation request from the specified URI query string.static AuthorizationRequestAuthorizationRequest. parse(URI uri)Parses an authorisation request from the specified URI.static AuthorizationRequestAuthorizationRequest. parse(URI uri, String query)Parses an authorisation request from the specified URI and query string.static AuthorizationRequestAuthorizationRequest. parse(URI uri, Map<String,List<String>> params)Parses an authorisation request from the specified URI and query parameters.static AuthorizationRequestAuthorizationRequest. parse(Map<String,List<String>> params)Parses an authorisation request from the specified URI query parameters.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.static AuthorizationSuccessResponseAuthorizationSuccessResponse. parse(HTTPRequest httpRequest)Parses an authorisation success response from the specified HTTP request at the client redirection (callback) URI.static AuthorizationSuccessResponseAuthorizationSuccessResponse. parse(HTTPResponse httpResponse)Parses an authorisation success response from the specified initial HTTP 302 redirect response generated at the authorisation endpoint.static AuthorizationSuccessResponseAuthorizationSuccessResponse. parse(URI uri)Parses an authorisation success response.static AuthorizationSuccessResponseAuthorizationSuccessResponse. parse(URI redirectURI, Map<String,List<String>> params)Parses an authorisation success response.static ClientCredentialsGrantClientCredentialsGrant. parse(Map<String,List<String>> params)Parses a client credentials grant from the specified request body parameters.static GrantTypeGrantType. parse(String value)Parses a grant type from the specified string.static JWTBearerGrantJWTBearerGrant. parse(Map<String,List<String>> params)Parses a JWT bearer grant from the specified request body parameters.static PushedAuthorizationErrorResponsePushedAuthorizationErrorResponse. parse(HTTPResponse httpResponse)Parses a pushed authorisation error response from the specified HTTP response.static PushedAuthorizationRequestPushedAuthorizationRequest. parse(HTTPRequest httpRequest)Parses a pushed authorisation request from the specified HTTP request.static PushedAuthorizationResponsePushedAuthorizationResponse. parse(HTTPResponse httpResponse)Parses a pushed authorisation response from the specified HTTP response.static PushedAuthorizationSuccessResponsePushedAuthorizationSuccessResponse. parse(HTTPResponse httpResponse)Parses a pushed authorisation success response from the specified HTTP response.static PushedAuthorizationSuccessResponsePushedAuthorizationSuccessResponse. parse(net.minidev.json.JSONObject jsonObject)Parses pushed authorisation success response from the specified JSON object.static RefreshTokenGrantRefreshTokenGrant. parse(Map<String,List<String>> params)Parses a refresh token grant from the specified request body parameters.static RequestObjectPOSTErrorResponseRequestObjectPOSTErrorResponse. parse(HTTPResponse httpResponse)Deprecated.Parses a request object POST error response from the specified HTTP response.static RequestObjectPOSTRequestRequestObjectPOSTRequest. parse(HTTPRequest httpRequest)Deprecated.Parses a request object POST request from the specified HTTP request.static RequestObjectPOSTResponseRequestObjectPOSTResponse. parse(HTTPResponse httpResponse)Deprecated.Parses a request object POST response from the specified HTTP response.static RequestObjectPOSTSuccessResponseRequestObjectPOSTSuccessResponse. parse(HTTPResponse httpResponse)Deprecated.Parses a request object POST success response from the specified HTTP response.static RequestObjectPOSTSuccessResponseRequestObjectPOSTSuccessResponse. parse(net.minidev.json.JSONObject jsonObject)Deprecated.Parses a request object POST success response from the specified JSON object.static ResourceOwnerPasswordCredentialsGrantResourceOwnerPasswordCredentialsGrant. parse(Map<String,List<String>> params)Parses a resource owner password credentials grant from the specified request body parameters.static ResponseTypeResponseType. parse(String s)Parses a set of authorisation response types.static SAML2BearerGrantSAML2BearerGrant. parse(Map<String,List<String>> params)Parses a SAML 2.0 bearer grant from the specified request body parameters.static TokenErrorResponseTokenErrorResponse. parse(HTTPResponse httpResponse)Parses an OAuth 2.0 Token Error response from the specified HTTP response.static TokenErrorResponseTokenErrorResponse. parse(net.minidev.json.JSONObject jsonObject)Parses an OAuth 2.0 Token Error response from the specified JSON object.static TokenIntrospectionErrorResponseTokenIntrospectionErrorResponse. parse(HTTPResponse httpResponse)Parses a token introspection error response from the specified HTTP response.static TokenIntrospectionRequestTokenIntrospectionRequest. parse(HTTPRequest httpRequest)Parses a token introspection request from the specified HTTP request.static TokenIntrospectionResponseTokenIntrospectionResponse. parse(HTTPResponse httpResponse)Parses a token introspection response from the specified HTTP response.static TokenIntrospectionSuccessResponseTokenIntrospectionSuccessResponse. parse(HTTPResponse httpResponse)Parses an token introspection success response from the specified HTTP response.static TokenIntrospectionSuccessResponseTokenIntrospectionSuccessResponse. parse(net.minidev.json.JSONObject jsonObject)Parses a token introspection success response from the specified JSON object.static TokenRequestTokenRequest. parse(HTTPRequest httpRequest)Parses a token request from the specified HTTP request.static TokenResponseTokenResponse. parse(HTTPResponse httpResponse)Parses a token response from the specified HTTP response.static TokenResponseTokenResponse. parse(net.minidev.json.JSONObject jsonObject)Parses a token response from the specified JSON object.static TokenRevocationRequestTokenRevocationRequest. parse(HTTPRequest httpRequest)Parses a token revocation request from the specified HTTP request.static Map<String,List<String>>AuthorizationResponse. parseResponseParameters(HTTPRequest httpRequest)Parses the relevant authorisation response parameters.static Map<String,List<String>>AuthorizationResponse. parseResponseParameters(URI uri)Parses the relevant authorisation response parameters. -
Uses of ParseException in com.nimbusds.oauth2.sdk.as
Methods in com.nimbusds.oauth2.sdk.as that throw ParseException Modifier and Type Method Description static AuthorizationServerEndpointMetadataAuthorizationServerEndpointMetadata. parse(net.minidev.json.JSONObject jsonObject)Parses an OAuth 2.0 Authorisation Server endpoint metadata from the specified JSON object.static AuthorizationServerMetadataAuthorizationServerMetadata. parse(String s)Parses an OAuth 2.0 Authorisation Server metadata from the specified JSON object string.static AuthorizationServerMetadataAuthorizationServerMetadata. parse(net.minidev.json.JSONObject jsonObject)Parses an OAuth 2.0 Authorisation Server metadata from the specified JSON object. -
Uses of ParseException in com.nimbusds.oauth2.sdk.assertions.jwt
Methods in com.nimbusds.oauth2.sdk.assertions.jwt that throw ParseException Modifier and Type Method Description static JWTAssertionDetailsJWTAssertionDetails. parse(com.nimbusds.jwt.JWTClaimsSet jwtClaimsSet)Parses a JWT bearer assertion details instance from the specified JWT claims set.static JWTAssertionDetailsJWTAssertionDetails. parse(net.minidev.json.JSONObject jsonObject)Parses a JWT bearer assertion details (claims set) instance from the specified JSON object. -
Uses of ParseException in com.nimbusds.oauth2.sdk.assertions.saml2
Methods in com.nimbusds.oauth2.sdk.assertions.saml2 that throw ParseException Modifier and Type Method Description static SAML2AssertionDetailsSAML2AssertionDetails. parse(org.opensaml.saml.saml2.core.Assertion assertion)Parses a SAML 2.0 bearer assertion details instance from the specified assertion object.static org.opensaml.saml.saml2.core.AssertionSAML2AssertionValidator. parse(String xml)Parses a SAML 2.0 assertion from the specified XML string. -
Uses of ParseException in com.nimbusds.oauth2.sdk.auth
Methods in com.nimbusds.oauth2.sdk.auth that throw ParseException Modifier and Type Method Description protected static voidJWTAuthentication. ensureClientAssertionType(Map<String,List<String>> params)Ensures the specified parameters map contains an entry with key "client_assertion_type" pointing to a string that equals the expectedJWTAuthentication.CLIENT_ASSERTION_TYPE.static ClientAuthenticationClientAuthentication. parse(HTTPRequest httpRequest)Parses the specified HTTP request for a supported client authentication (seeClientAuthenticationMethod).static ClientSecretBasicClientSecretBasic. parse(HTTPRequest httpRequest)Parses a client secret basic authentication from the specified HTTP request.static ClientSecretBasicClientSecretBasic. parse(String header)Parses a client secret basic authentication from the specified HTTP Authorization header.static ClientSecretJWTClientSecretJWT. parse(HTTPRequest httpRequest)Parses the specified HTTP POST request for a client secret JSON Web Token (JWT) authentication.static ClientSecretJWTClientSecretJWT. parse(String paramsString)Parses a client secret JSON Web Token (JWT) authentication from the specifiedapplication/x-www-form-urlencodedencoded parameters string.static ClientSecretJWTClientSecretJWT. parse(Map<String,List<String>> params)Parses the specified parameters map for a client secret JSON Web Token (JWT) authentication.static ClientSecretPostClientSecretPost. parse(HTTPRequest httpRequest)Parses a client secret post authentication from the specified HTTP POST request.static ClientSecretPostClientSecretPost. parse(String paramsString)Parses a client secret post authentication from the specifiedapplication/x-www-form-urlencodedencoded parameters string.static ClientSecretPostClientSecretPost. parse(Map<String,List<String>> params)Parses a client secret post authentication from the specified parameters map.static JWTAuthenticationJWTAuthentication. parse(HTTPRequest httpRequest)Parses the specified HTTP request for a JSON Web Token (JWT) based client authentication.static JWTAuthenticationClaimsSetJWTAuthenticationClaimsSet. parse(com.nimbusds.jwt.JWTClaimsSet jwtClaimsSet)Parses a JWT client authentication claims set from the specified JWT claims set.static JWTAuthenticationClaimsSetJWTAuthenticationClaimsSet. parse(net.minidev.json.JSONObject jsonObject)Parses a JWT client authentication claims set from the specified JSON object.static PKITLSClientAuthenticationPKITLSClientAuthentication. parse(HTTPRequest httpRequest)Parses a PKI mutual TLS client authentication from the specified HTTP request.static PrivateKeyJWTPrivateKeyJWT. parse(HTTPRequest httpRequest)Parses the specified HTTP POST request for a private key JSON Web Token (JWT) authentication.static PrivateKeyJWTPrivateKeyJWT. parse(String paramsString)Parses a private key JSON Web Token (JWT) authentication from the specifiedapplication/x-www-form-urlencodedencoded parameters string.static PrivateKeyJWTPrivateKeyJWT. parse(Map<String,List<String>> params)Parses the specified parameters map for a private key JSON Web Token (JWT) authentication.static SelfSignedTLSClientAuthenticationSelfSignedTLSClientAuthentication. parse(HTTPRequest httpRequest)Parses a self-signed certificate mutual TLS client authentication from the specified HTTP request.protected static com.nimbusds.jwt.SignedJWTJWTAuthentication. parseClientAssertion(Map<String,List<String>> params)Parses the specified parameters map for a client assertion. -
Uses of ParseException in com.nimbusds.oauth2.sdk.client
Methods in com.nimbusds.oauth2.sdk.client that throw ParseException Modifier and Type Method Description static ClientDeleteRequestClientDeleteRequest. parse(HTTPRequest httpRequest)Parses a client delete request from the specified HTTP DELETE request.static ClientInformationClientInformation. parse(net.minidev.json.JSONObject jsonObject)Parses a client information instance from the specified JSON object.static ClientInformationResponseClientInformationResponse. parse(HTTPResponse httpResponse)Parses a client information response from the specified HTTP response.static ClientMetadataClientMetadata. parse(net.minidev.json.JSONObject jsonObject)Parses an client metadata instance from the specified JSON object.static ClientReadRequestClientReadRequest. parse(HTTPRequest httpRequest)Parses a client read request from the specified HTTP GET request.static ClientRegistrationErrorResponseClientRegistrationErrorResponse. parse(HTTPResponse httpResponse)Parses a client registration error response from the specified HTTP response.static ClientRegistrationRequestClientRegistrationRequest. parse(HTTPRequest httpRequest)Parses a client registration request from the specified HTTP POST request.static ClientRegistrationResponseClientRegistrationResponse. parse(HTTPResponse httpResponse)Parses a client registration response from the specified HTTP response.static ClientUpdateRequestClientUpdateRequest. parse(HTTPRequest httpRequest)Parses a client update request from the specified HTTP PUT request.static ClientIDClientCredentialsParser. parseID(net.minidev.json.JSONObject jsonObject)Parses a client identifier from the specified JSON object.static DateClientCredentialsParser. parseIDIssueDate(net.minidev.json.JSONObject jsonObject)Parses a client identifier issue date from the specified JSON object.static BearerAccessTokenClientCredentialsParser. parseRegistrationAccessToken(net.minidev.json.JSONObject jsonObject)Parses a client registration access token from the specified JSON object.static URIClientCredentialsParser. parseRegistrationURI(net.minidev.json.JSONObject jsonObject)Parses a client registration URI from the specified JSON object.static SecretClientCredentialsParser. parseSecret(net.minidev.json.JSONObject jsonObject)Parses a client secret from the specified JSON object. -
Uses of ParseException in com.nimbusds.oauth2.sdk.device
Methods in com.nimbusds.oauth2.sdk.device that throw ParseException Modifier and Type Method Description static DeviceAuthorizationErrorResponseDeviceAuthorizationErrorResponse. parse(HTTPResponse httpResponse)Parses an OAuth 2.0 device authorization error response from the specified HTTP response.static DeviceAuthorizationErrorResponseDeviceAuthorizationErrorResponse. parse(net.minidev.json.JSONObject jsonObject)Parses an OAuth 2.0 device authorization response from the specified JSON object.static DeviceAuthorizationRequestDeviceAuthorizationRequest. parse(HTTPRequest httpRequest)Parses an device authorization request from the specified HTTP request.static DeviceAuthorizationResponseDeviceAuthorizationResponse. parse(HTTPResponse httpResponse)Parses a device authorization response from the specified HTTP response.static DeviceAuthorizationResponseDeviceAuthorizationResponse. parse(net.minidev.json.JSONObject jsonObject)Parses a device authorization response from the specified JSON object.static DeviceAuthorizationSuccessResponseDeviceAuthorizationSuccessResponse. parse(HTTPResponse httpResponse)Parses an device authorization response from the specified HTTP response.static DeviceAuthorizationSuccessResponseDeviceAuthorizationSuccessResponse. parse(net.minidev.json.JSONObject jsonObject)Parses an device authorization response from the specified JSON object.static DeviceCodeGrantDeviceCodeGrant. parse(Map<String,List<String>> params)Parses a device code grant from the specified request body parameters. -
Uses of ParseException in com.nimbusds.oauth2.sdk.http
Methods in com.nimbusds.oauth2.sdk.http that throw ParseException Modifier and Type Method Description voidHTTPRequest. ensureMethod(HTTPRequest.Method expectedMethod)Ensures this HTTP request has the specified method.voidHTTPResponse. ensureStatusCode(int... expectedStatusCode)Ensures this HTTP response has the specified status code.voidHTTPResponse. ensureStatusCodeNotOK()Ensures this HTTP response does not have a200 OKstatus code.net.minidev.json.JSONArrayHTTPResponse. getContentAsJSONArray()Gets the response content as a JSON array.net.minidev.json.JSONObjectHTTPResponse. getContentAsJSONObject()Gets the response content as a JSON object.com.nimbusds.jwt.JWTHTTPResponse. getContentAsJWT()Gets the response content as a JSON Web Token (JWT).net.minidev.json.JSONObjectHTTPRequest. getQueryAsJSONObject()Gets the request query or entity body as a JSON Object. -
Uses of ParseException in com.nimbusds.oauth2.sdk.id
Methods in com.nimbusds.oauth2.sdk.id that throw ParseException Modifier and Type Method Description static ActorActor. parse(net.minidev.json.JSONObject jsonObject)Parses an actor from the specified JSON object representation.static ActorActor. parseTopLevel(net.minidev.json.JSONObject jsonObject)Parses an actor from the specified top-level JSON object contains an optional actor JSON representation. -
Uses of ParseException in com.nimbusds.oauth2.sdk.jarm
Methods in com.nimbusds.oauth2.sdk.jarm that throw ParseException Modifier and Type Method Description static booleanJARMUtils. impliesAuthorizationErrorResponse(com.nimbusds.jwt.JWT jwt)Returnstrueif the specified JWT-secured authorisation response implies an error response.static booleanJARMUtils. impliesAuthorizationErrorResponse(String jwtString)Returnstrueif the specified JWT-secured authorisation response implies an error response. -
Uses of ParseException in com.nimbusds.oauth2.sdk.pkce
Methods in com.nimbusds.oauth2.sdk.pkce that throw ParseException Modifier and Type Method Description static CodeChallengeCodeChallenge. parse(String value)Parses a code challenge from the specified string. -
Uses of ParseException in com.nimbusds.oauth2.sdk.token
Methods in com.nimbusds.oauth2.sdk.token that throw ParseException Modifier and Type Method Description static AccessTokenAccessToken. parse(String header)Parses anAuthorizationHTTP request header value for an access token.static AccessTokenAccessToken. parse(net.minidev.json.JSONObject jsonObject)Parses an access token from a JSON object access token response.static BearerAccessTokenBearerAccessToken. parse(HTTPRequest request)Parses an HTTP request for a bearer access token.static BearerAccessTokenBearerAccessToken. parse(String header)Parses an HTTP Authorization header for a bearer access token.static BearerAccessTokenBearerAccessToken. parse(Map<String,List<String>> parameters)Parses a query or form parameters map for a bearer access token.static BearerAccessTokenBearerAccessToken. parse(net.minidev.json.JSONObject jsonObject)Parses a bearer access token from a JSON object access token response.static BearerTokenErrorBearerTokenError. parse(String wwwAuth)Parses an OAuth 2.0 bearer token error from the specified HTTP responseWWW-Authenticateheader.static RefreshTokenRefreshToken. parse(net.minidev.json.JSONObject jsonObject)Parses a refresh token from a JSON object access token response.static TokensTokens. parse(net.minidev.json.JSONObject jsonObject)Parses an access and optional refresh token from the specified JSON object. -
Uses of ParseException in com.nimbusds.oauth2.sdk.util
Methods in com.nimbusds.oauth2.sdk.util that throw ParseException Modifier and Type Method Description static voidContentTypeUtils. ensureContentType(com.nimbusds.common.contenttype.ContentType expected, com.nimbusds.common.contenttype.ContentType found)Ensures the content type of an HTTP header matches an expected value.static voidContentTypeUtils. ensureContentType(javax.mail.internet.ContentType expected, javax.mail.internet.ContentType found)Deprecated.static booleanJSONObjectUtils. getBoolean(net.minidev.json.JSONObject o, String key)Gets a boolean member of a JSON object.static booleanJSONObjectUtils. getBoolean(net.minidev.json.JSONObject o, String key, boolean def)Gets a boolean member of a JSON object.static doubleJSONObjectUtils. getDouble(net.minidev.json.JSONObject o, String key)Gets a number member of a JSON object asdouble.static doubleJSONObjectUtils. getDouble(net.minidev.json.JSONObject o, String key, double def)Gets a number member of a JSON object asdouble.static javax.mail.internet.InternetAddressJSONObjectUtils. getEmail(net.minidev.json.JSONObject o, String key)Deprecated.static <T extends Enum<T>>
TJSONObjectUtils. getEnum(net.minidev.json.JSONObject o, String key, Class<T> enumClass)Gets a string member of a JSON object as an enumerated object.static <T extends Enum<T>>
TJSONObjectUtils. getEnum(net.minidev.json.JSONObject o, String key, Class<T> enumClass, T def)Gets a string member of a JSON object as an enumerated object.static floatJSONObjectUtils. getFloat(net.minidev.json.JSONObject o, String key)Gets a number member of a JSON objectfloat.static floatJSONObjectUtils. getFloat(net.minidev.json.JSONObject o, String key, float def)Gets a number member of a JSON objectfloat.static <T> TJSONObjectUtils. getGeneric(net.minidev.json.JSONObject o, String key, Class<T> clazz)Gets a generic member of a JSON object.static intJSONObjectUtils. getInt(net.minidev.json.JSONObject o, String key)Gets an number member of a JSON object asint.static intJSONObjectUtils. getInt(net.minidev.json.JSONObject o, String key, int def)Gets an number member of a JSON object asint.static net.minidev.json.JSONArrayJSONObjectUtils. getJSONArray(net.minidev.json.JSONObject o, String key)Gets a JSON array member of a JSON object.static net.minidev.json.JSONArrayJSONObjectUtils. getJSONArray(net.minidev.json.JSONObject o, String key, net.minidev.json.JSONArray def)Gets a JSON array member of a JSON object.static net.minidev.json.JSONObjectJSONObjectUtils. getJSONObject(net.minidev.json.JSONObject o, String key)Gets a JSON object member of a JSON object.static net.minidev.json.JSONObjectJSONObjectUtils. getJSONObject(net.minidev.json.JSONObject o, String key, net.minidev.json.JSONObject def)Gets a JSON object member of a JSON object.static List<Object>JSONObjectUtils. getList(net.minidev.json.JSONObject o, String key)Gets a list member of a JSON object.static List<Object>JSONObjectUtils. getList(net.minidev.json.JSONObject o, String key, List<Object> def)Gets a list member of a JSON object.static longJSONObjectUtils. getLong(net.minidev.json.JSONObject o, String key)Gets a number member of a JSON object aslong.static longJSONObjectUtils. getLong(net.minidev.json.JSONObject o, String key, long def)Gets a number member of a JSON object aslong.static NumberJSONObjectUtils. getNumber(net.minidev.json.JSONObject o, String key)Gets a number member of a JSON object asjava.lang.Number.static NumberJSONObjectUtils. getNumber(net.minidev.json.JSONObject o, String key, Number def)Gets a number member of a JSON object asjava.lang.Number.static StringJSONObjectUtils. getString(net.minidev.json.JSONObject o, String key)Gets a string member of a JSON object.static StringJSONObjectUtils. getString(net.minidev.json.JSONObject o, String key, String def)Gets a string member of a JSON object.static String[]JSONObjectUtils. getStringArray(net.minidev.json.JSONObject o, String key)Gets a string array member of a JSON object.static String[]JSONObjectUtils. getStringArray(net.minidev.json.JSONObject o, String key, String[] def)Gets a string array member of a JSON object.static List<String>JSONObjectUtils. getStringList(net.minidev.json.JSONObject o, String key)Gets a string list member of a JSON object.static List<String>JSONObjectUtils. getStringList(net.minidev.json.JSONObject o, String key, List<String> def)Gets a string list member of a JSON object.static Set<String>JSONObjectUtils. getStringSet(net.minidev.json.JSONObject o, String key)Gets a string array member of a JSON object as a string set.static Set<String>JSONObjectUtils. getStringSet(net.minidev.json.JSONObject o, String key, Set<String> def)Gets a string array member of a JSON object as a string set.static URIJSONObjectUtils. getURI(net.minidev.json.JSONObject o, String key)Gets a string member of a JSON object asjava.net.URI.static URIJSONObjectUtils. getURI(net.minidev.json.JSONObject o, String key, URI def)Gets a string member of a JSON object asjava.net.URI.static URLJSONObjectUtils. getURL(net.minidev.json.JSONObject o, String key)Gets a string member of a JSON object asjava.net.URL.static net.minidev.json.JSONArrayJSONArrayUtils. parse(String s)Parses a JSON array.static net.minidev.json.JSONObjectJSONObjectUtils. parse(String s)Parses a JSON object.static net.minidev.json.JSONObjectJSONObjectUtils. parseJSONObject(String s)Deprecated.static List<net.minidev.json.JSONObject>JSONArrayUtils. toJSONObjectList(net.minidev.json.JSONArray jsonArray)static List<URI>JSONArrayUtils. toURIList(net.minidev.json.JSONArray jsonArray)Converts the specified JSON array to a URI list. -
Uses of ParseException in com.nimbusds.oauth2.sdk.util.date
Methods in com.nimbusds.oauth2.sdk.util.date that throw ParseException Modifier and Type Method Description static DateWithTimeZoneOffsetDateWithTimeZoneOffset. parseISO8601String(String s)Parses an ISO 8601 representation inYYYY-MM-DDThh:mm:ss±hh:mmformat.static SimpleDateSimpleDate. parseISO8601String(String s)Parses an ISO 8601 representation inYYYY-MM-DDformat. -
Uses of ParseException in com.nimbusds.openid.connect.sdk
Methods in com.nimbusds.openid.connect.sdk that throw ParseException Modifier and Type Method Description static AuthenticationErrorResponseAuthenticationErrorResponse. parse(HTTPRequest httpRequest)Parses an OpenID Connect authentication error response from the specified HTTP request at the client redirection (callback) URI.static AuthenticationErrorResponseAuthenticationErrorResponse. parse(HTTPResponse httpResponse)Parses an OpenID Connect authentication error response from the specified initial HTTP 302 redirect response generated at the authorisation endpoint.static AuthenticationErrorResponseAuthenticationErrorResponse. parse(URI uri)Parses an OpenID Connect authentication error response.static AuthenticationErrorResponseAuthenticationErrorResponse. parse(URI redirectURI, Map<String,List<String>> params)Parses an OpenID Connect authentication error response.static AuthenticationRequestAuthenticationRequest. parse(HTTPRequest httpRequest)Parses an authentication request from the specified HTTP GET or HTTP POST request.static AuthenticationRequestAuthenticationRequest. parse(String query)Parses an OpenID Connect authentication request from the specified URI query string.static AuthenticationRequestAuthenticationRequest. parse(URI uri)Parses an OpenID Connect authentication request from the specified URI.static AuthenticationRequestAuthenticationRequest. parse(URI uri, String query)Parses an OpenID Connect authentication request from the specified URI query string.static AuthenticationRequestAuthenticationRequest. parse(URI uri, Map<String,List<String>> params)Parses an OpenID Connect authentication request from the specified URI and query parameters.static AuthenticationRequestAuthenticationRequest. parse(Map<String,List<String>> params)Parses an OpenID Connect authentication request from the specified URI query parameters.static AuthenticationResponseAuthenticationResponseParser. parse(HTTPRequest httpRequest)Parses an OpenID Connect authentication response from the specified HTTP request at the client redirection (callback) URI.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)Parses an OpenID Connect authentication response from the specified initial HTTP 302 redirect response output at the authorisation endpoint.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)Parses an OpenID Connect authentication response.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)Parses an 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.static AuthenticationSuccessResponseAuthenticationSuccessResponse. parse(HTTPRequest httpRequest)Parses an OpenID Connect authentication success response from the specified HTTP request at the client redirection (callback) URI.static AuthenticationSuccessResponseAuthenticationSuccessResponse. parse(HTTPResponse httpResponse)Parses an OpenID Connect authentication success response from the specified initial HTTP 302 redirect response generated at the authorisation endpoint.static AuthenticationSuccessResponseAuthenticationSuccessResponse. parse(URI uri)Parses an OpenID Connect authentication success response.static AuthenticationSuccessResponseAuthenticationSuccessResponse. parse(URI redirectURI, Map<String,List<String>> params)Parses an OpenID Connect authentication success response.static BackChannelLogoutRequestBackChannelLogoutRequest. parse(HTTPRequest httpRequest)Parses a back-channel logout request from the specified HTTP request.static BackChannelLogoutRequestBackChannelLogoutRequest. parse(URI uri, Map<String,List<String>> params)Parses a back-channel logout request from the specified URI and request body parameters.static BackChannelLogoutRequestBackChannelLogoutRequest. parse(Map<String,List<String>> params)Parses a back-channel logout request from the specified request body parameters.static ClaimsRequestClaimsRequest. parse(String json)Parses a claims request from the specified JSON object string representation.static DisplayDisplay. parse(String s)Parses a display type.static LogoutRequestLogoutRequest. parse(HTTPRequest httpRequest)Parses a logout request from the specified HTTP request.static LogoutRequestLogoutRequest. parse(String query)Parses a logout request from the specified URI query string.static LogoutRequestLogoutRequest. parse(URI uri)Parses a logout request from the specified URI.static LogoutRequestLogoutRequest. parse(URI uri, String query)Parses a logout request from the specified URI query string.static LogoutRequestLogoutRequest. parse(URI uri, Map<String,List<String>> params)Parses a logout request from the specified URI and query parameters.static LogoutRequestLogoutRequest. parse(Map<String,List<String>> params)Parses a logout request from the specified URI query parameters.static OIDCTokenResponseOIDCTokenResponse. parse(HTTPResponse httpResponse)Parses an OpenID Connect access token response from the specified HTTP response.static OIDCTokenResponseOIDCTokenResponse. parse(net.minidev.json.JSONObject jsonObject)Parses an OpenID Connect token response from the specified JSON object.static TokenResponseOIDCTokenResponseParser. parse(HTTPResponse httpResponse)Parses an OpenID Connect token response or token error response from the specified HTTP response.static TokenResponseOIDCTokenResponseParser. parse(net.minidev.json.JSONObject jsonObject)Parses an OpenID Connect token response or token error response from the specified JSON object.static PromptPrompt. parse(String s)Parses a prompt from the specified string.static PromptPrompt. parse(Collection<String> collection)Parses a prompt from the specified string list.static Prompt.TypePrompt.Type. parse(String s)Parses a prompt type.static SubjectTypeSubjectType. parse(String s)Parses a subject identifier type.static UserInfoErrorResponseUserInfoErrorResponse. parse(HTTPResponse httpResponse)Parses a UserInfo error response from the specified HTTP response.static UserInfoErrorResponseUserInfoErrorResponse. parse(String wwwAuth)Parses a UserInfo error response from the specified HTTP responseWWW-Authenticateheader.static UserInfoRequestUserInfoRequest. parse(HTTPRequest httpRequest)Parses the specified HTTP request for a UserInfo request.static UserInfoResponseUserInfoResponse. parse(HTTPResponse httpResponse)Parses a UserInfo response from the specified HTTP response.static UserInfoSuccessResponseUserInfoSuccessResponse. parse(HTTPResponse httpResponse)Parses a UserInfo response from the specified HTTP response. -
Uses of ParseException in com.nimbusds.openid.connect.sdk.assurance
Methods in com.nimbusds.openid.connect.sdk.assurance that throw ParseException Modifier and Type Method Description static IdentityVerificationIdentityVerification. parse(net.minidev.json.JSONObject jsonObject)Parses an identity verification from the specified JSON object. -
Uses of ParseException in com.nimbusds.openid.connect.sdk.assurance.claims
Methods in com.nimbusds.openid.connect.sdk.assurance.claims that throw ParseException Modifier and Type Method Description static CountryCodeCountryCode. parse(String s)Parses a country code.static ISO3166_1Alpha2CountryCodeISO3166_1Alpha2CountryCode. parse(String s)Parses an ISO 3166-1 alpha-2 (two-letter) country code.static VerifiedClaimsSetVerifiedClaimsSet. parse(net.minidev.json.JSONObject jsonObject)Parses a verified claims set from the specified JSON object. -
Uses of ParseException in com.nimbusds.openid.connect.sdk.assurance.evidences
Methods in com.nimbusds.openid.connect.sdk.assurance.evidences that throw ParseException Modifier and Type Method Description protected static voidIdentityEvidence. ensureType(IdentityEvidenceType expectedType, net.minidev.json.JSONObject jsonObject)Ensures thetypemember of the specified JSON object matches the expected.static IDDocumentDescriptionIDDocumentDescription. parse(net.minidev.json.JSONObject jsonObject)Parses an identity document description from the specified JSON object.static IDDocumentEvidenceIDDocumentEvidence. parse(net.minidev.json.JSONObject jsonObject)Parses an identity document used as identity evidence from the specified JSON object.static IdentityEvidenceIdentityEvidence. parse(net.minidev.json.JSONObject jsonObject)Parses an identity evidence from the specified JSON object.static IdentityVerifierIdentityVerifier. parse(net.minidev.json.JSONObject jsonObject)Parses a verifier from the specified JSON object.static QESEvidenceQESEvidence. parse(net.minidev.json.JSONObject jsonObject)Parses a new QES evidence from the specified JSON object.static UtilityBillEvidenceUtilityBillEvidence. parse(net.minidev.json.JSONObject jsonObject)Parses a utility bill evidence from the specified JSON object. -
Uses of ParseException in com.nimbusds.openid.connect.sdk.claims
Methods in com.nimbusds.openid.connect.sdk.claims that throw ParseException Modifier and Type Method Description static AddressAddress. parse(String json)Parses an address claims set from the specified JSON object string.static ClaimTypeClaimType. parse(String s)Parses a claim type.static IDTokenClaimsSetIDTokenClaimsSet. parse(String json)Parses an ID token claims set from the specified JSON object string.static IDTokenClaimsSetIDTokenClaimsSet. parse(net.minidev.json.JSONObject jsonObject)Parses an ID token claims set from the specified JSON object.static LogoutTokenClaimsSetLogoutTokenClaimsSet. parse(String json)Parses a logout token claims set from the specified JSON object string.static UserInfoUserInfo. parse(String json)Parses a UserInfo claims set from the specified JSON object string.com.nimbusds.jwt.JWTClaimsSetClaimsSet. toJWTClaimsSet()Gets the JSON Web Token (JWT) claims set for this claim set.com.nimbusds.jwt.JWTClaimsSetLogoutTokenClaimsSet. toJWTClaimsSet()Constructors in com.nimbusds.openid.connect.sdk.claims that throw ParseException Constructor Description IDTokenClaimsSet(com.nimbusds.jwt.JWTClaimsSet jwtClaimsSet)Creates a new ID token claims set from the specified JSON Web Token (JWT) claims set.LogoutTokenClaimsSet(com.nimbusds.jwt.JWTClaimsSet jwtClaimsSet)Creates a new logout token claims set from the specified JSON Web Token (JWT) claims set. -
Uses of ParseException in com.nimbusds.openid.connect.sdk.op
Methods in com.nimbusds.openid.connect.sdk.op that throw ParseException Modifier and Type Method Description static OIDCProviderEndpointMetadataOIDCProviderEndpointMetadata. parse(net.minidev.json.JSONObject jsonObject)Parses an OAuth 2.0 Authorisation Server endpoint metadata from the specified JSON object.static OIDCProviderMetadataOIDCProviderMetadata. parse(String s)Parses an OpenID Provider metadata from the specified JSON object string.static OIDCProviderMetadataOIDCProviderMetadata. parse(net.minidev.json.JSONObject jsonObject)Parses an OpenID Provider metadata from the specified JSON object. -
Uses of ParseException in com.nimbusds.openid.connect.sdk.rp
Methods in com.nimbusds.openid.connect.sdk.rp that throw ParseException Modifier and Type Method Description static OIDCClientInformationOIDCClientInformation. parse(net.minidev.json.JSONObject jsonObject)Parses an OpenID Connect client information instance from the specified JSON object.static OIDCClientInformationResponseOIDCClientInformationResponse. parse(HTTPResponse httpResponse)Parses an OpenID Connect client information response from the specified HTTP response.static OIDCClientMetadataOIDCClientMetadata. parse(net.minidev.json.JSONObject jsonObject)Parses an OpenID Connect client metadata instance from the specified JSON object.static OIDCClientRegistrationRequestOIDCClientRegistrationRequest. parse(HTTPRequest httpRequest)Parses an OpenID Connect client registration request from the specified HTTP POST request.static ClientRegistrationResponseOIDCClientRegistrationResponseParser. parse(HTTPResponse httpResponse)Parses an OpenID Connect client registration response from the specified HTTP response.static OIDCClientUpdateRequestOIDCClientUpdateRequest. parse(HTTPRequest httpRequest)Parses an OpenID Connect client update request from the specified HTTP PUT request. -
Uses of ParseException in com.nimbusds.openid.connect.sdk.token
Methods in com.nimbusds.openid.connect.sdk.token that throw ParseException Modifier and Type Method Description static OIDCTokensOIDCTokens. parse(net.minidev.json.JSONObject jsonObject)Parses an OpenID Connect tokens instance from the specified JSON object.
-