Package com.nimbusds.oauth2.sdk.client
Class RegistrationError
- java.lang.Object
-
- com.nimbusds.oauth2.sdk.client.RegistrationError
-
public final class RegistrationError extends Object
OAuth 2.0 client registration errors.
-
-
Field Summary
Fields Modifier and Type Field Description static ErrorObject
INVALID_CLIENT_METADATA
Client registration: The value of one of the client meta data fields is invalid and the server has rejected this request.static ErrorObject
INVALID_REDIRECT_URI
Client registration: The value of one or moreredirect_uris
is invalid.static ErrorObject
INVALID_SOFTWARE_STATEMENT
Client registration: The software statement presented is invalid.static ErrorObject
UNAPPROVED_SOFTWARE_STATEMENT
Client registration: The software statement presented is not approved for use by this authorisation server.
-
-
-
Field Detail
-
INVALID_REDIRECT_URI
public static final ErrorObject INVALID_REDIRECT_URI
Client registration: The value of one or moreredirect_uris
is invalid.
-
INVALID_CLIENT_METADATA
public static final ErrorObject INVALID_CLIENT_METADATA
Client registration: The value of one of the client meta data fields is invalid and the server has rejected this request. Note that an authorisation server may choose to substitute a valid value for any requested parameter of a client's meta data.
-
INVALID_SOFTWARE_STATEMENT
public static final ErrorObject INVALID_SOFTWARE_STATEMENT
Client registration: The software statement presented is invalid.
-
UNAPPROVED_SOFTWARE_STATEMENT
public static final ErrorObject UNAPPROVED_SOFTWARE_STATEMENT
Client registration: The software statement presented is not approved for use by this authorisation server.
-
-