SAML federation
The TIDMA_SAML_FEDERATION table holds the specific attributes of SAML federation credentials, like the name ID of the subject, the name ID of the issuer and the URI of the name ID's format. The credential value is derived from the subject name ID and issuer name ID of the SAML federation extension. It is the Base64-encoded SHA-256 hash value of the concatenation of the name ID attributes.
The TIDMA_SAML_FEDERATION table is an extension of TIDMA_CREDENTIAL, which lists attributes that are valid for all credentials.
Database table TIDMA_SAML_FEDERATION
DB attribute | Java data type (max. size), defaults | Description |
---|---|---|
credential_id | Long, not NULL | Primary key (uniquely identifies each individual credential). Foreign key that links to information in the table TIDMA_CREDENTIAL. |
issuer_name_id | String(1030), not NULL | Name ID of the Issuer. |
issuer_name_id_format | String(100), not NULL | URI of the Issuer Name ID format. |
subject_name_id | String(1030), not NULL | Name ID of the Subject. |
subject_name_id_format | String(100), not NULL | URI of the Subject Name ID format. |