Class Pac4jSamlServiceProviderMetadataJdbcProperties

java.lang.Object
org.apereo.cas.configuration.model.support.jpa.AbstractJpaProperties
org.apereo.cas.configuration.model.support.pac4j.saml.Pac4jSamlServiceProviderMetadataJdbcProperties
All Implemented Interfaces:
Serializable, CasFeatureModule

@RequiresModule(name="cas-server-support-pac4j-webflow") public class Pac4jSamlServiceProviderMetadataJdbcProperties extends AbstractJpaProperties
Since:
7.0.0
See Also:
  • Constructor Details

    • Pac4jSamlServiceProviderMetadataJdbcProperties

      public Pac4jSamlServiceProviderMetadataJdbcProperties()
  • Method Details

    • getTableName

      public String getTableName()
      The table name in the database that holds the SAML2 service provider metadata. The table structure and columns must be created and exist beforehand, and must match the following SQL statements, with expected adjustments depending on database type, driver and dialect:

      CREATE TABLE sp_metadata (entityId VARCHAR(512), metadata TEXT)

    • setTableName

      public Pac4jSamlServiceProviderMetadataJdbcProperties setTableName(String tableName)
      The table name in the database that holds the SAML2 service provider metadata. The table structure and columns must be created and exist beforehand, and must match the following SQL statements, with expected adjustments depending on database type, driver and dialect:

      CREATE TABLE sp_metadata (entityId VARCHAR(512), metadata TEXT)

      Returns:
      this.