Interface Saml2ErrorCodes
-
@Deprecated public interface Saml2ErrorCodesDeprecated.UseSaml2ErrorCodesinsteadA list of SAML known 2 error codes used during SAML authentication.- Since:
- 5.2
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringDECRYPTION_ERRORDeprecated.The system failed to decrypt an assertion or a name identifier.static java.lang.StringINTERNAL_VALIDATION_ERRORDeprecated.An error happened during validation.static java.lang.StringINVALID_ASSERTIONDeprecated.The assertion was not valid.static java.lang.StringINVALID_DESTINATIONDeprecated.Response destination does not match the request URL.static java.lang.StringINVALID_ISSUERDeprecated.An Issuer element contained a value that didn't https://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf#page=15static java.lang.StringINVALID_SIGNATUREDeprecated.The signature of response or assertion was invalid.static java.lang.StringMALFORMED_RESPONSE_DATADeprecated.The response data is malformed or incomplete.static java.lang.StringRELYING_PARTY_REGISTRATION_NOT_FOUNDDeprecated.The relying party registration was not found.static java.lang.StringSUBJECT_NOT_FOUNDDeprecated.The assertion did not contain a subject element.static java.lang.StringUNKNOWN_RESPONSE_CLASSDeprecated.SAML Data does not represent a SAML 2 Response object.static java.lang.StringUSERNAME_NOT_FOUNDDeprecated.The subject did not contain a user identifier The assertion contained a subject element, but the subject element did not have aNameIDorEncryptedIDelement https://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf#page=18
-
-
-
Field Detail
-
UNKNOWN_RESPONSE_CLASS
static final java.lang.String UNKNOWN_RESPONSE_CLASS
Deprecated.SAML Data does not represent a SAML 2 Response object. A valid XML object was received, but that object was not a SAML 2 Response object of typeResponseTypeper specification https://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf#page=46- See Also:
- Constant Field Values
-
MALFORMED_RESPONSE_DATA
static final java.lang.String MALFORMED_RESPONSE_DATA
Deprecated.The response data is malformed or incomplete. An invalid XML object was received, and XML unmarshalling failed.- See Also:
- Constant Field Values
-
INVALID_DESTINATION
static final java.lang.String INVALID_DESTINATION
Deprecated.Response destination does not match the request URL. A SAML 2 response object was received at a URL that did not match the URL stored in the {code Destination} attribute in the Response object. https://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf#page=38- See Also:
- Constant Field Values
-
INVALID_ASSERTION
static final java.lang.String INVALID_ASSERTION
Deprecated.The assertion was not valid. The assertion used for authentication failed validation. Details around the failure will be present in the error description.- See Also:
- Constant Field Values
-
INVALID_SIGNATURE
static final java.lang.String INVALID_SIGNATURE
Deprecated.The signature of response or assertion was invalid. Either the response or the assertion was missing a signature or the signature could not be verified using the system's configured credentials. Most commonly the IDP's X509 certificate.- See Also:
- Constant Field Values
-
SUBJECT_NOT_FOUND
static final java.lang.String SUBJECT_NOT_FOUND
Deprecated.The assertion did not contain a subject element. The subject element, type SubjectType, contains aNameIDor anEncryptedIDthat is used to assign the authenticated principal an identifier, typically a username. https://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf#page=18- See Also:
- Constant Field Values
-
USERNAME_NOT_FOUND
static final java.lang.String USERNAME_NOT_FOUND
Deprecated.The subject did not contain a user identifier The assertion contained a subject element, but the subject element did not have aNameIDorEncryptedIDelement https://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf#page=18- See Also:
- Constant Field Values
-
DECRYPTION_ERROR
static final java.lang.String DECRYPTION_ERROR
Deprecated.The system failed to decrypt an assertion or a name identifier. This error code will be thrown if the decryption of either aEncryptedAssertionorEncryptedIDfails. https://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf#page=17- See Also:
- Constant Field Values
-
INVALID_ISSUER
static final java.lang.String INVALID_ISSUER
Deprecated.An Issuer element contained a value that didn't https://docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf#page=15- See Also:
- Constant Field Values
-
INTERNAL_VALIDATION_ERROR
static final java.lang.String INTERNAL_VALIDATION_ERROR
Deprecated.An error happened during validation. Used when internal, non classified, errors are caught during the authentication process.- See Also:
- Constant Field Values
-
RELYING_PARTY_REGISTRATION_NOT_FOUND
static final java.lang.String RELYING_PARTY_REGISTRATION_NOT_FOUND
Deprecated.The relying party registration was not found. The registration ID did not correspond to any relying party registration.- See Also:
- Constant Field Values
-
-