SAML2 Delegated Authentication - Metadata Management
In the event that CAS is configured to delegate authentication to an external identity provider, the service provider (CAS) metadata as well as the identity provider metadata automatically become available at the following endpoints:
Endpoint | Description |
---|---|
/sp/metadata |
Displays the service provider (CAS) metadata. Works well if there is only one SAML2 IdP is defined. |
/sp/idp/metadata |
Displays the identity provider metadata. Works well if there is only one SAML2 IdP is defined. Accepts a force=true parameter to reload the identity provider’s metadata. |
/sp/{clientName}/metadata |
Displays the service provider metadata for the requested client name. |
/sp/{clientName}/idp/metadata |
Displays the identity provider metadata for the requested client name. Accepts a force=true parameter to reload the identity provider’s metadata |
Note that you can use more than one external identity provider with CAS, where each integration may be done with a different set of metadata and keys for CAS acting as the service provider. Each integration (referred to as a client, since CAS itself becomes a client of the identity provider) may be given a name optionally.
Remember that the service provider (CAS) metadata is automatically generated once you access the above
endpoints or view the CAS login screen. This is required because today, generating the metadata requires
access to the HTTP request/response. In the event that metadata cannot
be resolved, a status code of 406 - Not Acceptable
is returned.
Strategies
SAML2 metadata for both the delegated identity provider as well as the (CAS) service provider can managed via the following settings.
-
The following settings and properties are available from the CAS configuration catalog:
The configuration settings listed below are tagged as Required in the CAS configuration metadata. This flag indicates that the presence of the setting may be needed to activate or affect the behavior of the CAS feature and generally should be reviewed, possibly owned and adjusted. If the setting is assigned a default value, you do not need to strictly put the setting in your copy of the configuration, but should review it nonetheless to make sure it matches your deployment expectations.
Processing...cas.authn.pac4j.saml[0].metadata.identity-provider-metadata-path=
The metadata location of the identity provider that is to handle authentications. The location can be specified as a direct absolute path to the metadata file or it may also be a URL to the identity provider's metadata endpoint.
org.apereo.cas.configuration.model.support.pac4j.saml.Pac4jSamlClientMetadataProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.identity-provider-metadata-path
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.identity-provider-metadata-path=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
identity-provider-metadata-path: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.identity-provider-metadata-path="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_IDENTITY_PROVIDER_METADATA_PATH="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.identity-provider-metadata-path="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.Showing 1 to 1 of 1 entriesThe configuration settings listed below are tagged as Optional in the CAS configuration metadata. This flag indicates that the presence of the setting is not immediately necessary in the end-user CAS configuration, because a default value is assigned or the activation of the feature is not conditionally controlled by the setting value. In other words, you should only include this field in your configuration if you need to modify the default value or if you need to turn on the feature controlled by the setting.
Configuration Metadata
The collection of configuration properties listed in this section are automatically generated from the CAS source and components that contain the actual field definitions, types, descriptions, modules, etc. This metadata may not always be 100% accurate, or could be lacking details and sufficient explanations.
Be Selective
This section is meant as a guide only. Do NOT copy/paste the entire collection of settings into your CAS configuration; rather pick only the properties that you need. Do NOT enable settings unless you are certain of their purpose and do NOT copy settings into your configuration only to keep them as reference. All these ideas lead to upgrade headaches, maintenance nightmares and premature aging.
YAGNI
Note that for nearly ALL use cases, declaring and configuring properties listed here is sufficient. You should NOT have to explicitly massage a CAS XML/Java/etc configuration file to design an authentication handler, create attribute release policies, etc. CAS at runtime will auto-configure all required changes for you. If you are unsure about the meaning of a given CAS setting, do NOT turn it on without hesitation. Review the codebase or better yet, ask questions to clarify the intended behavior.
Naming Convention
Property names can be specified in very relaxed terms. For instance
cas.someProperty
,cas.some-property
,cas.some_property
are all valid names. While all forms are accepted by CAS, there are certain components (in CAS and other frameworks used) whose activation at runtime is conditional on a property value, where this property is required to have been specified in CAS configuration using kebab case. This is both true for properties that are owned by CAS as well as those that might be presented to the system via an external library or framework such as Spring Boot, etc.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.Settings and properties that are controlled by the CAS platform directly always begin with the prefix
cas
. All other settings are controlled and provided to CAS via other underlying frameworks and may have their own schemas and syntax. BE CAREFUL with the distinction. Unrecognized properties are rejected by CAS and/or frameworks upon which CAS depends. This means if you somehow misspell a property definition or fail to adhere to the dot-notation syntax and such, your setting is entirely refused by CAS and likely the feature it controls will never be activated in the way you intend.Validation
Configuration properties are automatically validated on CAS startup to report issues with configuration binding, specially if defined CAS settings cannot be recognized or validated by the configuration schema. Additional validation processes are also handled via Configuration Metadata and property migrations applied automatically on startup by Spring Boot and family.
Indexed Settings
CAS settings able to accept multiple values are typically documented with an index, such as
cas.some.setting[0]=value
. The index[0]
is meant to be incremented by the adopter to allow for distinct multiple configuration blocks. -
Default
SAML2 metadata for CAS as the SAML2 service provider is typically managed on disk, and generated on startup if the metadata file is not found. Future and subsequent changes to this metadata file, if necessary, must be handled manually and the file might need to be curated and edited to fit your purposes.
The following settings and properties are available from the CAS configuration catalog:
The configuration settings listed below are tagged as Required in the CAS configuration metadata. This flag indicates that the presence of the setting may be needed to activate or affect the behavior of the CAS feature and generally should be reviewed, possibly owned and adjusted. If the setting is assigned a default value, you do not need to strictly put the setting in your copy of the configuration, but should review it nonetheless to make sure it matches your deployment expectations.
Processing...cas.authn.pac4j.saml[0].metadata.service-provider.file-system.location=
Location of the SP metadata to use and generate on the file system. If the metadata file already exists, it will be ignored and reused. Location of the SP metadata to use and generate on the file system. If the metadata file already exists, it will be ignored and reused.
org.apereo.cas.configuration.model.support.pac4j.saml.Pac4jSamlServiceProviderMetadataFileSystemProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.file-system.location
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.file-system.location=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
file-system:
location: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.file-system.location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_FILE_SYSTEM_LOCATION="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.file-system.location="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.Showing 1 to 1 of 1 entriesThe configuration settings listed below are tagged as Optional in the CAS configuration metadata. This flag indicates that the presence of the setting is not immediately necessary in the end-user CAS configuration, because a default value is assigned or the activation of the feature is not conditionally controlled by the setting value. In other words, you should only include this field in your configuration if you need to modify the default value or if you need to turn on the feature controlled by the setting.
Configuration Metadata
The collection of configuration properties listed in this section are automatically generated from the CAS source and components that contain the actual field definitions, types, descriptions, modules, etc. This metadata may not always be 100% accurate, or could be lacking details and sufficient explanations.
Be Selective
This section is meant as a guide only. Do NOT copy/paste the entire collection of settings into your CAS configuration; rather pick only the properties that you need. Do NOT enable settings unless you are certain of their purpose and do NOT copy settings into your configuration only to keep them as reference. All these ideas lead to upgrade headaches, maintenance nightmares and premature aging.
YAGNI
Note that for nearly ALL use cases, declaring and configuring properties listed here is sufficient. You should NOT have to explicitly massage a CAS XML/Java/etc configuration file to design an authentication handler, create attribute release policies, etc. CAS at runtime will auto-configure all required changes for you. If you are unsure about the meaning of a given CAS setting, do NOT turn it on without hesitation. Review the codebase or better yet, ask questions to clarify the intended behavior.
Naming Convention
Property names can be specified in very relaxed terms. For instance
cas.someProperty
,cas.some-property
,cas.some_property
are all valid names. While all forms are accepted by CAS, there are certain components (in CAS and other frameworks used) whose activation at runtime is conditional on a property value, where this property is required to have been specified in CAS configuration using kebab case. This is both true for properties that are owned by CAS as well as those that might be presented to the system via an external library or framework such as Spring Boot, etc.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.Settings and properties that are controlled by the CAS platform directly always begin with the prefix
cas
. All other settings are controlled and provided to CAS via other underlying frameworks and may have their own schemas and syntax. BE CAREFUL with the distinction. Unrecognized properties are rejected by CAS and/or frameworks upon which CAS depends. This means if you somehow misspell a property definition or fail to adhere to the dot-notation syntax and such, your setting is entirely refused by CAS and likely the feature it controls will never be activated in the way you intend.Validation
Configuration properties are automatically validated on CAS startup to report issues with configuration binding, specially if defined CAS settings cannot be recognized or validated by the configuration schema. Additional validation processes are also handled via Configuration Metadata and property migrations applied automatically on startup by Spring Boot and family.
Indexed Settings
CAS settings able to accept multiple values are typically documented with an index, such as
cas.some.setting[0]=value
. The index[0]
is meant to be incremented by the adopter to allow for distinct multiple configuration blocks.MongoDb
SAML2 metadata for CAS as the SAML2 service provider may also be managed inside a MongoDb instance. To active this feature, you need to start by including the following module in the overlay:
1 2 3 4 5
<dependency> <groupId>org.apereo.cas</groupId> <artifactId>cas-server-support-mongo-core</artifactId> <version>${cas.version}</version> </dependency>
1
implementation "org.apereo.cas:cas-server-support-mongo-core:${project.'cas.version'}"
1 2 3 4 5 6 7 8 9
dependencyManagement { imports { mavenBom "org.apereo.cas:cas-server-support-bom:${project.'cas.version'}" } } dependencies { implementation "org.apereo.cas:cas-server-support-mongo-core" }
1 2 3 4 5 6 7 8 9 10
dependencies { /* The following platform references should be included automatically and are listed here for reference only. implementation enforcedPlatform("org.apereo.cas:cas-server-support-bom:${project.'cas.version'}") implementation platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES) */ implementation "org.apereo.cas:cas-server-support-mongo-core" }
Next, you should activate and turn on the feature:
Feature Activation
To activate this feature, the following feature toggle(s) must be turned on:
1
CasFeatureModule.DelegatedAuthentication.saml-mongodb.enabled=true
To learn more about configuration feature toggles, please see this page.
Finally, please make sure you have specified a collection name in your CAS settings that would ultimately house the generated SAML2 metadata.
The following settings and properties are available from the CAS configuration catalog:
The configuration settings listed below are tagged as Required in the CAS configuration metadata. This flag indicates that the presence of the setting may be needed to activate or affect the behavior of the CAS feature and generally should be reviewed, possibly owned and adjusted. If the setting is assigned a default value, you do not need to strictly put the setting in your copy of the configuration, but should review it nonetheless to make sure it matches your deployment expectations.
Processing...cas.authn.pac4j.saml[0].metadata.service-provider.mongo.client-uri=
The connection uri to the mongodb instance. This typically takes on the form of
mongodb://user:psw@ds135522.somewhere.com:35522/db
. If not specified, will fallback onto other individual settings. If specified, takes over all other settings where applicable.org.apereo.cas.configuration.model.support.mongo.SingleCollectionMongoDbProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.mongo.client-uri
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.mongo.client-uri=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
mongo:
client-uri: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.mongo.client-uri="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_MONGO_CLIENT_URI="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.mongo.client-uri="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.authn.pac4j.saml[0].metadata.service-provider.mongo.collection=
MongoDb database collection name to fetch and/or create.
org.apereo.cas.configuration.model.support.mongo.SingleCollectionMongoDbProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.mongo.collection
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.mongo.collection=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
mongo:
collection: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.mongo.collection="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_MONGO_COLLECTION="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.mongo.collection="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.authn.pac4j.saml[0].metadata.service-provider.mongo.database-name=
MongoDb database instance name.
org.apereo.cas.configuration.model.support.mongo.SingleCollectionMongoDbProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.mongo.database-name
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.mongo.database-name=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
mongo:
database-name: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.mongo.database-name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_MONGO_DATABASE_NAME="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.mongo.database-name="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.authn.pac4j.saml[0].metadata.service-provider.mongo.host=
MongoDb database host for authentication. Multiple host addresses may be defined, separated by comma. If more than one host is defined, it is assumed that each host contains the port as well, if any. Otherwise the configuration may fallback onto the port defined.
org.apereo.cas.configuration.model.support.mongo.SingleCollectionMongoDbProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.mongo.host
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.mongo.host=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
mongo:
host: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.mongo.host="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_MONGO_HOST="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.mongo.host="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.authn.pac4j.saml[0].metadata.service-provider.mongo.password=
MongoDb database password for authentication.
org.apereo.cas.configuration.model.support.mongo.SingleCollectionMongoDbProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.mongo.password
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.mongo.password=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
mongo:
password: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.mongo.password="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_MONGO_PASSWORD="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.mongo.password="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.Showing 1 to 5 of 7 entriesThe configuration settings listed below are tagged as Optional in the CAS configuration metadata. This flag indicates that the presence of the setting is not immediately necessary in the end-user CAS configuration, because a default value is assigned or the activation of the feature is not conditionally controlled by the setting value. In other words, you should only include this field in your configuration if you need to modify the default value or if you need to turn on the feature controlled by the setting.
Processing...cas.authn.pac4j.saml[0].metadata.service-provider.mongo.authentication-database-name=
Name of the database to use for authentication.
org.apereo.cas.configuration.model.support.mongo.SingleCollectionMongoDbProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.mongo.authentication-database-name
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.mongo.authentication-database-name=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
mongo:
authentication-database-name: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.mongo.authentication-database-name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_MONGO_AUTHENTICATION_DATABASE_NAME="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.mongo.authentication-database-name="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.authn.pac4j.saml[0].metadata.service-provider.mongo.drop-collection=
Whether collections should be dropped on startup and re-created.
org.apereo.cas.configuration.model.support.mongo.SingleCollectionMongoDbProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.mongo.drop-collection
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.mongo.drop-collection=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
mongo:
drop-collection: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.mongo.drop-collection="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_MONGO_DROP_COLLECTION="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.mongo.drop-collection="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.authn.pac4j.saml[0].metadata.service-provider.mongo.pool.idle-time=PT30S
The maximum idle time of a pooled connection. A zero value indicates no limit to the idle time. A pooled connection that has exceeded its idle time will be closed and replaced when necessary by a new connection.
This settings supports the
java.time.Duration
syntax [?].org.apereo.cas.configuration.model.support.mongo.MongoDbConnectionPoolProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.mongo.pool.idle-time
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.mongo.pool.idle-time=PT30S
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
mongo:
pool:
idle-time: "PT30S"CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.mongo.pool.idle-time="PT30S" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_MONGO_POOL_IDLE_TIME="PT30S" java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.mongo.pool.idle-time="PT30S"
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.authn.pac4j.saml[0].metadata.service-provider.mongo.pool.life-time=PT60S
The maximum time a pooled connection can live for. A zero value indicates no limit to the life time. A pooled connection that has exceeded its life time will be closed and replaced when necessary by a new connection.
This settings supports the
java.time.Duration
syntax [?].org.apereo.cas.configuration.model.support.mongo.MongoDbConnectionPoolProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.mongo.pool.life-time
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.mongo.pool.life-time=PT60S
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
mongo:
pool:
life-time: "PT60S"CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.mongo.pool.life-time="PT60S" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_MONGO_POOL_LIFE_TIME="PT60S" java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.mongo.pool.life-time="PT60S"
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.authn.pac4j.saml[0].metadata.service-provider.mongo.pool.max-size=10
Maximum number of connections to keep around.
org.apereo.cas.configuration.model.support.mongo.MongoDbConnectionPoolProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.mongo.pool.max-size
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.mongo.pool.max-size=10
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
mongo:
pool:
max-size: "10"CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.mongo.pool.max-size="10" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_MONGO_POOL_MAX_SIZE="10" java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.mongo.pool.max-size="10"
cas.war
with an embedded server container and can be found in thebuild/libs
directory.Showing 1 to 5 of 16 entriesConfiguration Metadata
The collection of configuration properties listed in this section are automatically generated from the CAS source and components that contain the actual field definitions, types, descriptions, modules, etc. This metadata may not always be 100% accurate, or could be lacking details and sufficient explanations.
Be Selective
This section is meant as a guide only. Do NOT copy/paste the entire collection of settings into your CAS configuration; rather pick only the properties that you need. Do NOT enable settings unless you are certain of their purpose and do NOT copy settings into your configuration only to keep them as reference. All these ideas lead to upgrade headaches, maintenance nightmares and premature aging.
YAGNI
Note that for nearly ALL use cases, declaring and configuring properties listed here is sufficient. You should NOT have to explicitly massage a CAS XML/Java/etc configuration file to design an authentication handler, create attribute release policies, etc. CAS at runtime will auto-configure all required changes for you. If you are unsure about the meaning of a given CAS setting, do NOT turn it on without hesitation. Review the codebase or better yet, ask questions to clarify the intended behavior.
Naming Convention
Property names can be specified in very relaxed terms. For instance
cas.someProperty
,cas.some-property
,cas.some_property
are all valid names. While all forms are accepted by CAS, there are certain components (in CAS and other frameworks used) whose activation at runtime is conditional on a property value, where this property is required to have been specified in CAS configuration using kebab case. This is both true for properties that are owned by CAS as well as those that might be presented to the system via an external library or framework such as Spring Boot, etc.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.Settings and properties that are controlled by the CAS platform directly always begin with the prefix
cas
. All other settings are controlled and provided to CAS via other underlying frameworks and may have their own schemas and syntax. BE CAREFUL with the distinction. Unrecognized properties are rejected by CAS and/or frameworks upon which CAS depends. This means if you somehow misspell a property definition or fail to adhere to the dot-notation syntax and such, your setting is entirely refused by CAS and likely the feature it controls will never be activated in the way you intend.Validation
Configuration properties are automatically validated on CAS startup to report issues with configuration binding, specially if defined CAS settings cannot be recognized or validated by the configuration schema. Additional validation processes are also handled via Configuration Metadata and property migrations applied automatically on startup by Spring Boot and family.
Indexed Settings
CAS settings able to accept multiple values are typically documented with an index, such as
cas.some.setting[0]=value
. The index[0]
is meant to be incremented by the adopter to allow for distinct multiple configuration blocks.JDBC
SAML2 metadata for CAS as the SAML2 service provider may also be managed inside a relational database instance. To active this feature, you need to start by including the following module in the overlay:
1 2 3 4 5
<dependency> <groupId>org.apereo.cas</groupId> <artifactId>cas-server-support-jpa-util</artifactId> <version>${cas.version}</version> </dependency>
1
implementation "org.apereo.cas:cas-server-support-jpa-util:${project.'cas.version'}"
1 2 3 4 5 6 7 8 9
dependencyManagement { imports { mavenBom "org.apereo.cas:cas-server-support-bom:${project.'cas.version'}" } } dependencies { implementation "org.apereo.cas:cas-server-support-jpa-util" }
1 2 3 4 5 6 7 8 9 10
dependencies { /* The following platform references should be included automatically and are listed here for reference only. implementation enforcedPlatform("org.apereo.cas:cas-server-support-bom:${project.'cas.version'}") implementation platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES) */ implementation "org.apereo.cas:cas-server-support-jpa-util" }
Next, you should activate and turn on the feature:
Feature Activation
To activate this feature, the following feature toggle(s) must be turned on:
1
CasFeatureModule.DelegatedAuthentication.saml-jdbc.enabled=true
To learn more about configuration feature toggles, please see this page.
Finally, please make sure you have specified a table name in your CAS settings that would ultimately house the generated SAML2 metadata.
The following settings and properties are available from the CAS configuration catalog:
The configuration settings listed below are tagged as Required in the CAS configuration metadata. This flag indicates that the presence of the setting may be needed to activate or affect the behavior of the CAS feature and generally should be reviewed, possibly owned and adjusted. If the setting is assigned a default value, you do not need to strictly put the setting in your copy of the configuration, but should review it nonetheless to make sure it matches your deployment expectations.
Processing...cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.driver-class=
The JDBC driver used to connect to the database.
org.apereo.cas.configuration.model.support.pac4j.saml.Pac4jSamlServiceProviderMetadataJdbcProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.jdbc.driver-class
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.driver-class=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
jdbc:
driver-class: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.jdbc.driver-class="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_JDBC_DRIVER_CLASS="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.driver-class="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.password=
The database connection password.
org.apereo.cas.configuration.model.support.pac4j.saml.Pac4jSamlServiceProviderMetadataJdbcProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.jdbc.password
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.password=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
jdbc:
password: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.jdbc.password="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_JDBC_PASSWORD="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.password="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.table-name=
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)
org.apereo.cas.configuration.model.support.pac4j.saml.Pac4jSamlServiceProviderMetadataJdbcProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.jdbc.table-name
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.table-name=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
jdbc:
table-name: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.jdbc.table-name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_JDBC_TABLE_NAME="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.table-name="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.url=
The database connection URL.
This setting supports the Spring Expression Language.
org.apereo.cas.configuration.model.support.pac4j.saml.Pac4jSamlServiceProviderMetadataJdbcProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.jdbc.url
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.url=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
jdbc:
url: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.jdbc.url="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_JDBC_URL="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.url="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.user=
The database user.
The database user must have sufficient permissions to be able to handle schema changes and updates, when needed.org.apereo.cas.configuration.model.support.pac4j.saml.Pac4jSamlServiceProviderMetadataJdbcProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.jdbc.user
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.user=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
jdbc:
user: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.jdbc.user="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_JDBC_USER="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.user="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.Showing 1 to 5 of 5 entriesThe configuration settings listed below are tagged as Optional in the CAS configuration metadata. This flag indicates that the presence of the setting is not immediately necessary in the end-user CAS configuration, because a default value is assigned or the activation of the feature is not conditionally controlled by the setting value. In other words, you should only include this field in your configuration if you need to modify the default value or if you need to turn on the feature controlled by the setting.
Processing...cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.autocommit=
The default auto-commit behavior of connections in the pool. Determined whether queries such as update/insert should be immediately executed without waiting for an underlying transaction.
org.apereo.cas.configuration.model.support.pac4j.saml.Pac4jSamlServiceProviderMetadataJdbcProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.jdbc.autocommit
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.autocommit=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
jdbc:
autocommit: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.jdbc.autocommit="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_JDBC_AUTOCOMMIT="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.autocommit="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.batch-size=
A non-zero value enables use of JDBC2 batch updates by Hibernate. e.g. recommended values between 5 and 30.
org.apereo.cas.configuration.model.support.pac4j.saml.Pac4jSamlServiceProviderMetadataJdbcProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.jdbc.batch-size
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.batch-size=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
jdbc:
batch-size: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.jdbc.batch-size="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_JDBC_BATCH_SIZE="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.batch-size="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.data-source-name=
Attempts to do a JNDI data source look up for the data source name specified. Will attempt to locate the data source object as is.
org.apereo.cas.configuration.model.support.pac4j.saml.Pac4jSamlServiceProviderMetadataJdbcProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.jdbc.data-source-name
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.data-source-name=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
jdbc:
data-source-name: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.jdbc.data-source-name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_JDBC_DATA_SOURCE_NAME="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.data-source-name="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.ddl-auto=
Hibernate feature to automatically validate and exports DDL to the schema. By default, creates and drops the schema automatically when a session is starts and ends. Setting the value to
validate
ornone
may be more desirable for production, but any of the following options can be used:-
validate
: Validate the schema, but make no changes to the database. -
update
: Update the schema. -
create
: Create the schema, destroying previous data. -
create-drop
: Drop the schema at the end of the session. -
none
: Do nothing.
create-drop
will result in the loss of all data as soon as CAS is started. For transient data like tickets this is probably not an issue, but in cases like the audit table important data could be lost. Using `update`, while safe for data, is confirmed to result in invalid database state.validate
ornone
settings are likely the only safe options for production use. For more info, see this.org.apereo.cas.configuration.model.support.pac4j.saml.Pac4jSamlServiceProviderMetadataJdbcProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.jdbc.ddl-auto
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.ddl-auto=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
jdbc:
ddl-auto: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.jdbc.ddl-auto="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_JDBC_DDL_AUTO="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.ddl-auto="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.default-catalog=
Qualifies unqualified table names with the given catalog in generated SQL.
org.apereo.cas.configuration.model.support.pac4j.saml.Pac4jSamlServiceProviderMetadataJdbcProperties.
CAS Property:
cas.authn.pac4j.saml[].metadata.service-provider.jdbc.default-catalog
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.default-catalog=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
authn:
pac4j:
saml[0]:
metadata:
service-provider:
jdbc:
default-catalog: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.authn.pac4j.saml[0].metadata.service-provider.jdbc.default-catalog="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_AUTHN_PAC4J_SAML[0]_METADATA_SERVICE_PROVIDER_JDBC_DEFAULT_CATALOG="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.authn.pac4j.saml[0].metadata.service-provider.jdbc.default-catalog="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.Showing 1 to 5 of 27 entriesControl global properties that are relevant to Hibernate, when CAS attempts to employ and utilize database resources, connections and queries.
Processing...cas.jdbc.case-insensitive=false
When choosing physical table names, determine whether names should be considered case-insensitive.
How can I configure this property?CAS Property:
cas.jdbc.case-insensitive
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.jdbc.case-insensitive=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
jdbc:
case-insensitive: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.jdbc.case-insensitive="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_JDBC_CASE_INSENSITIVE="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.jdbc.case-insensitive="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.jdbc.gen-ddl=true
Whether to generate DDL after the EntityManagerFactory has been initialized creating/updating all relevant tables.
How can I configure this property?CAS Property:
cas.jdbc.gen-ddl
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.jdbc.gen-ddl=true
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
jdbc:
gen-ddl: "true"CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.jdbc.gen-ddl="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_JDBC_GEN_DDL="true" java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.jdbc.gen-ddl="true"
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.jdbc.physical-table-names=
Indicate a physical table name to be used by the hibernate naming strategy in case table names need to be customized for the specific type of database. The key here indicates the CAS-provided table name and the value is the translate physical name for the database. If a match is not found for the CAS-provided table name, then that name will be used by default.
How can I configure this property?CAS Property:
cas.jdbc.physical-table-names
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.jdbc.physical-table-names=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
jdbc:
physical-table-names: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.jdbc.physical-table-names="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_JDBC_PHYSICAL_TABLE_NAMES="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.jdbc.physical-table-names="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.cas.jdbc.show-sql=false
Whether SQL queries should be displayed in the console/logs.
How can I configure this property?CAS Property:
cas.jdbc.show-sql
Configuration properties can be included and activated using the following strategies.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.CAS properties can be specified using the Java configuration property syntax in any and all.properties
files:This is the most common form of property configuration that is recognized by CAS, regardless of the actual property source, which might in fact be managed separately outside the CAS environment, by another system or cloud framework.1
cas.jdbc.show-sql=...
CAS properties can be specified using the YAML syntax:Note that YAML is very specific about structure and indentation. Be sure to verify the correctness of the final result with your YAML validator of choice.cas:
jdbc:
show-sql: "..."CAS properties can be passed to the CAS web application as system properties, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -Dcas.jdbc.show-sql="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory. Note the placement of the system property which must be specified before the CAS web application is launched.CAS properties can specified as system environment variables before the CAS web application is launched:The above example assumes that the CAS web application is packaged as1 2 3
export CAS_JDBC_SHOW_SQL="..." java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in thebuild/libs
directory.CAS properties can be passed to the CAS web application as command-line arguments, when the application is launched:The above example assumes that the CAS web application is packaged as1
java -jar build/libs/cas.war --cas.jdbc.show-sql="..."
cas.war
with an embedded server container and can be found in thebuild/libs
directory.Showing 1 to 4 of 4 entriesConfiguration Metadata
The collection of configuration properties listed in this section are automatically generated from the CAS source and components that contain the actual field definitions, types, descriptions, modules, etc. This metadata may not always be 100% accurate, or could be lacking details and sufficient explanations.
Be Selective
This section is meant as a guide only. Do NOT copy/paste the entire collection of settings into your CAS configuration; rather pick only the properties that you need. Do NOT enable settings unless you are certain of their purpose and do NOT copy settings into your configuration only to keep them as reference. All these ideas lead to upgrade headaches, maintenance nightmares and premature aging.
YAGNI
Note that for nearly ALL use cases, declaring and configuring properties listed here is sufficient. You should NOT have to explicitly massage a CAS XML/Java/etc configuration file to design an authentication handler, create attribute release policies, etc. CAS at runtime will auto-configure all required changes for you. If you are unsure about the meaning of a given CAS setting, do NOT turn it on without hesitation. Review the codebase or better yet, ask questions to clarify the intended behavior.
Naming Convention
Property names can be specified in very relaxed terms. For instance
cas.someProperty
,cas.some-property
,cas.some_property
are all valid names. While all forms are accepted by CAS, there are certain components (in CAS and other frameworks used) whose activation at runtime is conditional on a property value, where this property is required to have been specified in CAS configuration using kebab case. This is both true for properties that are owned by CAS as well as those that might be presented to the system via an external library or framework such as Spring Boot, etc.Note
When possible, properties should be stored in lower-case kebab format, such as
cas.property-name=value
. The only possible exception to this rule is when naming actuator endpoints; The name of the actuator endpoints (i.e.ssoSessions
) MUST remain in camelCase mode.Settings and properties that are controlled by the CAS platform directly always begin with the prefix
cas
. All other settings are controlled and provided to CAS via other underlying frameworks and may have their own schemas and syntax. BE CAREFUL with the distinction. Unrecognized properties are rejected by CAS and/or frameworks upon which CAS depends. This means if you somehow misspell a property definition or fail to adhere to the dot-notation syntax and such, your setting is entirely refused by CAS and likely the feature it controls will never be activated in the way you intend.Validation
Configuration properties are automatically validated on CAS startup to report issues with configuration binding, specially if defined CAS settings cannot be recognized or validated by the configuration schema. Additional validation processes are also handled via Configuration Metadata and property migrations applied automatically on startup by Spring Boot and family.
Indexed Settings
CAS settings able to accept multiple values are typically documented with an index, such as
cas.some.setting[0]=value
. The index[0]
is meant to be incremented by the adopter to allow for distinct multiple configuration blocks.The table structure and schema needs to be created and must exist prior to CAS starting up, and it should be modeled after the following SQL statement:
1
CREATE TABLE <table-name> (entityId VARCHAR(512), metadata TEXT)