SAML SP Integrations
CAS provides built-in integration support for a number of SAML2 service providers. Configuring these service providers is about declaring the relevant properties in the CAS configuration as well as the configuration module below. Each integration, when configured appropriately, will register the service provider with the CAS service registry as a SAML SP and will follow a recipe (that is documented by the SP publicly) to configure attribute release policies, name ids and entity IDs. If you need to, you can review the registration record inside the CAS service registry to adjust options.
NOTE: In the event that special attributes and/or name ids are required for the integration, you are required to ensure all such attributes are properly resolved and are available to the CAS principal.
SAML2 service provider integrations listed here attempt to automate CAS configuration based on known and documented integration guidelines and recipes provided by the service provider owned by the vendor. These recipes can change and break CAS over time and needless to say, they need to be properly and thoroughly tested as the project itself does not have a subscription to each application to test for correctness. YMMV. If you find an issue with an automated integration strategy here, please speak up.
Support is enabled by including the following module in the WAR Overlay:
1
2
3
4
5
<dependency>
<groupId>org.apereo.cas</groupId>
<artifactId>cas-server-support-saml-sp-integrations</artifactId>
<version>${cas.version}</version>
</dependency>
1
implementation "org.apereo.cas:cas-server-support-saml-sp-integrations:${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-saml-sp-integrations"
}
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-saml-sp-integrations"
}
The following SAML SP integrations, as samples, are provided by CAS:
If you have developed a recipe for integrating with a SAML service provider, consider contributing that recipe to the project so its configuration can be automated once and for all to use. Let the change become a feature of the project, rather than something you alone have to maintain.
Configuration
Allow CAS to register and enable a number of built-in SAML service provider integrations.
SAML2 service provider integrations listed here attempt to automate CAS configuration based on known and documented integration guidelines and recipes provided by the service provider owned by the vendor. These recipes can change and break CAS over time.
The settings defined for each service provider attempt to automate the creation of SAML service definition and nothing more. If you find the applicable settings lack in certain areas, it is best to fall back onto the native configuration strategy for registering SAML service providers with CAS which would depend on your service registry of choice.
The SAML2 service provider supports the following settings:
Name | Description |
---|---|
metadata |
Location of metadata for the service provider (i.e URL, path, etc) |
name |
The name of the service provider registered in the service registry. |
description |
The description of the service provider registered in the service registry. |
name-id-attribute |
Attribute to use when generating name ids for this service provider. |
name-id-format |
The forced NameID Format identifier (i.e. urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress ). |
attributes |
Attributes to release to the service provider, which may virtually be mapped and renamed. |
signature-location |
Signature location to verify metadata. |
entity-ids |
List of entity ids allowed for this service provider. |
sign-responses |
Indicate whether responses should be signed. Default is true . |
sign-assertions |
Indicate whether assertions should be signed. Default is false . |
The only required setting that would activate the automatic configuration for a service provider is the presence and definition of metadata. All other settings are optional.
The following settings and properties are available from the CAS configuration catalog:
- Required
- Optional
- Signing & Encryption
- Hibernate & JDBC
- Email Servers
- Groovy Scripting
- LDAP & Active Directory
- Authentication
- Password Encoding
- Principal Transformation
- Password Policy
- Notes
cas.saml-sp.academic-health-plans.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
CAS Property:
|
1 |
cas.saml-sp.academic-health-plans.metadata=... |
1
cas:
saml-sp:
academic-health-plans:
metadata: "..."
1
java -Dcas.saml-sp.academic-health-plans.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ACADEMIC_HEALTH_PLANS_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.academic-health-plans.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.adobe-cloud.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AdobeCloud.
CAS Property: cas.saml-sp.adobe-cloud.metadata
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.
.properties
files:
1
cas.saml-sp.adobe-cloud.metadata=...
1
cas:
saml-sp:
adobe-cloud:
metadata: "..."
1
java -Dcas.saml-sp.adobe-cloud.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ADOBE_CLOUD_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.adobe-cloud.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.amazon.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Amazon.
CAS Property: cas.saml-sp.amazon.metadata
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.
.properties
files:
1
cas.saml-sp.amazon.metadata=...
1
cas:
saml-sp:
amazon:
metadata: "..."
1
java -Dcas.saml-sp.amazon.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_AMAZON_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.amazon.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.app-dynamics.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AppDynamics.
CAS Property: cas.saml-sp.app-dynamics.metadata
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.
.properties
files:
1
cas.saml-sp.app-dynamics.metadata=...
1
cas:
saml-sp:
app-dynamics:
metadata: "..."
1
java -Dcas.saml-sp.app-dynamics.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_APP_DYNAMICS_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.app-dynamics.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arc-g-i-s.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArcGIS.
CAS Property: cas.saml-sp.arc-g-i-s.metadata
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.
.properties
files:
1
cas.saml-sp.arc-g-i-s.metadata=...
1
cas:
saml-sp:
arc-g-i-s:
metadata: "..."
1
java -Dcas.saml-sp.arc-g-i-s.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARC_G_I_S_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arc-g-i-s.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arms-software.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArmsSoftware.
CAS Property: cas.saml-sp.arms-software.metadata
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.
.properties
files:
1
cas.saml-sp.arms-software.metadata=...
1
cas:
saml-sp:
arms-software:
metadata: "..."
1
java -Dcas.saml-sp.arms-software.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARMS_SOFTWARE_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arms-software.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.asana.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Asana.
CAS Property: cas.saml-sp.asana.metadata
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.
.properties
files:
1
cas.saml-sp.asana.metadata=...
1
cas:
saml-sp:
asana:
metadata: "..."
1
java -Dcas.saml-sp.asana.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ASANA_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.asana.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.benefit-focus.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BenefitFocus.
CAS Property: cas.saml-sp.benefit-focus.metadata
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.
.properties
files:
1
cas.saml-sp.benefit-focus.metadata=...
1
cas:
saml-sp:
benefit-focus:
metadata: "..."
1
java -Dcas.saml-sp.benefit-focus.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BENEFIT_FOCUS_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.benefit-focus.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.black-baud.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BlackBaud.
CAS Property: cas.saml-sp.black-baud.metadata
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.
.properties
files:
1
cas.saml-sp.black-baud.metadata=...
1
cas:
saml-sp:
black-baud:
metadata: "..."
1
java -Dcas.saml-sp.black-baud.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BLACK_BAUD_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.black-baud.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.box.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Box.
CAS Property: cas.saml-sp.box.metadata
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.
.properties
files:
1
cas.saml-sp.box.metadata=...
1
cas:
saml-sp:
box:
metadata: "..."
1
java -Dcas.saml-sp.box.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BOX_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.box.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.bynder.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Bynder.
CAS Property: cas.saml-sp.bynder.metadata
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.
.properties
files:
1
cas.saml-sp.bynder.metadata=...
1
cas:
saml-sp:
bynder:
metadata: "..."
1
java -Dcas.saml-sp.bynder.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BYNDER_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.bynder.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cccco.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CaliforniaCommunityColleges.
CAS Property: cas.saml-sp.cccco.metadata
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.
.properties
files:
1
cas.saml-sp.cccco.metadata=...
1
cas:
saml-sp:
cccco:
metadata: "..."
1
java -Dcas.saml-sp.cccco.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CCCCO_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cccco.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cher-well.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CherWell.
CAS Property: cas.saml-sp.cher-well.metadata
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.
.properties
files:
1
cas.saml-sp.cher-well.metadata=...
1
cas:
saml-sp:
cher-well:
metadata: "..."
1
java -Dcas.saml-sp.cher-well.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CHER_WELL_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cher-well.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.concur-solutions.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ConcurSolutions.
CAS Property: cas.saml-sp.concur-solutions.metadata
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.
.properties
files:
1
cas.saml-sp.concur-solutions.metadata=...
1
cas:
saml-sp:
concur-solutions:
metadata: "..."
1
java -Dcas.saml-sp.concur-solutions.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONCUR_SOLUTIONS_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.concur-solutions.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.confluence.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Confluence.
CAS Property: cas.saml-sp.confluence.metadata
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.
.properties
files:
1
cas.saml-sp.confluence.metadata=...
1
cas:
saml-sp:
confluence:
metadata: "..."
1
java -Dcas.saml-sp.confluence.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONFLUENCE_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.confluence.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cranium-cafe.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CraniumCafe.
CAS Property: cas.saml-sp.cranium-cafe.metadata
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.
.properties
files:
1
cas.saml-sp.cranium-cafe.metadata=...
1
cas:
saml-sp:
cranium-cafe:
metadata: "..."
1
java -Dcas.saml-sp.cranium-cafe.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRANIUM_CAFE_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cranium-cafe.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.crash-plan.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CrashPlan.
CAS Property: cas.saml-sp.crash-plan.metadata
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.
.properties
files:
1
cas.saml-sp.crash-plan.metadata=...
1
cas:
saml-sp:
crash-plan:
metadata: "..."
1
java -Dcas.saml-sp.crash-plan.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRASH_PLAN_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.crash-plan.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.docu-sign.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.DocuSign.
CAS Property: cas.saml-sp.docu-sign.metadata
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.
.properties
files:
1
cas.saml-sp.docu-sign.metadata=...
1
cas:
saml-sp:
docu-sign:
metadata: "..."
1
java -Dcas.saml-sp.docu-sign.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DOCU_SIGN_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.docu-sign.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.dropbox.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Dropbox.
CAS Property: cas.saml-sp.dropbox.metadata
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.
.properties
files:
1
cas.saml-sp.dropbox.metadata=...
1
cas:
saml-sp:
dropbox:
metadata: "..."
1
java -Dcas.saml-sp.dropbox.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DROPBOX_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.dropbox.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.easy-iep.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EasyIep.
CAS Property: cas.saml-sp.easy-iep.metadata
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.
.properties
files:
1
cas.saml-sp.easy-iep.metadata=...
1
cas:
saml-sp:
easy-iep:
metadata: "..."
1
java -Dcas.saml-sp.easy-iep.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EASY_IEP_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.easy-iep.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.egnyte.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Egnyte.
CAS Property: cas.saml-sp.egnyte.metadata
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.
.properties
files:
1
cas.saml-sp.egnyte.metadata=...
1
cas:
saml-sp:
egnyte:
metadata: "..."
1
java -Dcas.saml-sp.egnyte.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EGNYTE_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.egnyte.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.emma.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Emma.
CAS Property: cas.saml-sp.emma.metadata
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.
.properties
files:
1
cas.saml-sp.emma.metadata=...
1
cas:
saml-sp:
emma:
metadata: "..."
1
java -Dcas.saml-sp.emma.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EMMA_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.emma.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.ever-bridge.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EverBridge.
CAS Property: cas.saml-sp.ever-bridge.metadata
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.
.properties
files:
1
cas.saml-sp.ever-bridge.metadata=...
1
cas:
saml-sp:
ever-bridge:
metadata: "..."
1
java -Dcas.saml-sp.ever-bridge.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVER_BRIDGE_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.ever-bridge.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.evernote.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Evernote.
CAS Property: cas.saml-sp.evernote.metadata
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.
.properties
files:
1
cas.saml-sp.evernote.metadata=...
1
cas:
saml-sp:
evernote:
metadata: "..."
1
java -Dcas.saml-sp.evernote.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVERNOTE_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.evernote.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.famis.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Famis.
CAS Property: cas.saml-sp.famis.metadata
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.
.properties
files:
1
cas.saml-sp.famis.metadata=...
1
cas:
saml-sp:
famis:
metadata: "..."
1
java -Dcas.saml-sp.famis.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_FAMIS_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.famis.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gartner.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gartner.
CAS Property: cas.saml-sp.gartner.metadata
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.
.properties
files:
1
cas.saml-sp.gartner.metadata=...
1
cas:
saml-sp:
gartner:
metadata: "..."
1
java -Dcas.saml-sp.gartner.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GARTNER_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gartner.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gitlab.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gitlab.
CAS Property: cas.saml-sp.gitlab.metadata
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.
.properties
files:
1
cas.saml-sp.gitlab.metadata=...
1
cas:
saml-sp:
gitlab:
metadata: "..."
1
java -Dcas.saml-sp.gitlab.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GITLAB_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gitlab.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.give-campus.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.GiveCampus.
CAS Property: cas.saml-sp.give-campus.metadata
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.
.properties
files:
1
cas.saml-sp.give-campus.metadata=...
1
cas:
saml-sp:
give-campus:
metadata: "..."
1
java -Dcas.saml-sp.give-campus.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GIVE_CAMPUS_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.give-campus.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.in-common.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InCommon.
CAS Property: cas.saml-sp.in-common.metadata
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.
.properties
files:
1
cas.saml-sp.in-common.metadata=...
1
cas:
saml-sp:
in-common:
metadata: "..."
1
java -Dcas.saml-sp.in-common.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_IN_COMMON_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.in-common.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.infinite-campus.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InfiniteCampus.
CAS Property: cas.saml-sp.infinite-campus.metadata
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.
.properties
files:
1
cas.saml-sp.infinite-campus.metadata=...
1
cas:
saml-sp:
infinite-campus:
metadata: "..."
1
java -Dcas.saml-sp.infinite-campus.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_INFINITE_CAMPUS_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.infinite-campus.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.jira.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Jira.
CAS Property: cas.saml-sp.jira.metadata
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.
.properties
files:
1
cas.saml-sp.jira.metadata=...
1
cas:
saml-sp:
jira:
metadata: "..."
1
java -Dcas.saml-sp.jira.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_JIRA_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.jira.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.neo-gov.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NeoGov.
CAS Property: cas.saml-sp.neo-gov.metadata
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.
.properties
files:
1
cas.saml-sp.neo-gov.metadata=...
1
cas:
saml-sp:
neo-gov:
metadata: "..."
1
java -Dcas.saml-sp.neo-gov.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEO_GOV_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.neo-gov.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.net-partner.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NetPartner.
CAS Property: cas.saml-sp.net-partner.metadata
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.
.properties
files:
1
cas.saml-sp.net-partner.metadata=...
1
cas:
saml-sp:
net-partner:
metadata: "..."
1
java -Dcas.saml-sp.net-partner.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NET_PARTNER_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.net-partner.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.new-relic.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NewRelic.
CAS Property: cas.saml-sp.new-relic.metadata
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.
.properties
files:
1
cas.saml-sp.new-relic.metadata=...
1
cas:
saml-sp:
new-relic:
metadata: "..."
1
java -Dcas.saml-sp.new-relic.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEW_RELIC_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.new-relic.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.office365.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Office365.
CAS Property: cas.saml-sp.office365.metadata
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.
.properties
files:
1
cas.saml-sp.office365.metadata=...
1
cas:
saml-sp:
office365:
metadata: "..."
1
java -Dcas.saml-sp.office365.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OFFICE365_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.office365.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.open-athens.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.OpenAthens.
CAS Property: cas.saml-sp.open-athens.metadata
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.
.properties
files:
1
cas.saml-sp.open-athens.metadata=...
1
cas:
saml-sp:
open-athens:
metadata: "..."
1
java -Dcas.saml-sp.open-athens.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OPEN_ATHENS_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.open-athens.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.pager-duty.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PagerDuty.
CAS Property: cas.saml-sp.pager-duty.metadata
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.
.properties
files:
1
cas.saml-sp.pager-duty.metadata=...
1
cas:
saml-sp:
pager-duty:
metadata: "..."
1
java -Dcas.saml-sp.pager-duty.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_PAGER_DUTY_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.pager-duty.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.poll-everywhere.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PollEverywhere.
CAS Property: cas.saml-sp.poll-everywhere.metadata
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.
.properties
files:
1
cas.saml-sp.poll-everywhere.metadata=...
1
cas:
saml-sp:
poll-everywhere:
metadata: "..."
1
java -Dcas.saml-sp.poll-everywhere.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_POLL_EVERYWHERE_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.poll-everywhere.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.qualtrics.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Qualtrics.
CAS Property: cas.saml-sp.qualtrics.metadata
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.
.properties
files:
1
cas.saml-sp.qualtrics.metadata=...
1
cas:
saml-sp:
qualtrics:
metadata: "..."
1
java -Dcas.saml-sp.qualtrics.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_QUALTRICS_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.qualtrics.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.rocket-chat.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.RocketChat.
CAS Property: cas.saml-sp.rocket-chat.metadata
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.
.properties
files:
1
cas.saml-sp.rocket-chat.metadata=...
1
cas:
saml-sp:
rocket-chat:
metadata: "..."
1
java -Dcas.saml-sp.rocket-chat.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ROCKET_CHAT_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.rocket-chat.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sa-manage.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SAManage.
CAS Property: cas.saml-sp.sa-manage.metadata
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.
.properties
files:
1
cas.saml-sp.sa-manage.metadata=...
1
cas:
saml-sp:
sa-manage:
metadata: "..."
1
java -Dcas.saml-sp.sa-manage.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SA_MANAGE_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sa-manage.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.safari-online.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SafariOnline.
CAS Property: cas.saml-sp.safari-online.metadata
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.
.properties
files:
1
cas.saml-sp.safari-online.metadata=...
1
cas:
saml-sp:
safari-online:
metadata: "..."
1
java -Dcas.saml-sp.safari-online.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SAFARI_ONLINE_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.safari-online.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.salesforce.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Salesforce.
CAS Property: cas.saml-sp.salesforce.metadata
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.
.properties
files:
1
cas.saml-sp.salesforce.metadata=...
1
cas:
saml-sp:
salesforce:
metadata: "..."
1
java -Dcas.saml-sp.salesforce.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SALESFORCE_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.salesforce.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sans-sth.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SecuringTheHuman.
CAS Property: cas.saml-sp.sans-sth.metadata
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.
.properties
files:
1
cas.saml-sp.sans-sth.metadata=...
1
cas:
saml-sp:
sans-sth:
metadata: "..."
1
java -Dcas.saml-sp.sans-sth.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SANS_STH_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sans-sth.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.service-now.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ServiceNow.
CAS Property: cas.saml-sp.service-now.metadata
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.
.properties
files:
1
cas.saml-sp.service-now.metadata=...
1
cas:
saml-sp:
service-now:
metadata: "..."
1
java -Dcas.saml-sp.service-now.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SERVICE_NOW_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.service-now.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.slack.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Slack.
CAS Property: cas.saml-sp.slack.metadata
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.
.properties
files:
1
cas.saml-sp.slack.metadata=...
1
cas:
saml-sp:
slack:
metadata: "..."
1
java -Dcas.saml-sp.slack.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SLACK_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.slack.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sserca.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SunshineStateEdResearchAlliance.
CAS Property: cas.saml-sp.sserca.metadata
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.
.properties
files:
1
cas.saml-sp.sserca.metadata=...
1
cas:
saml-sp:
sserca:
metadata: "..."
1
java -Dcas.saml-sp.sserca.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SSERCA_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sserca.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.symplicity.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Symplicity.
CAS Property: cas.saml-sp.symplicity.metadata
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.
.properties
files:
1
cas.saml-sp.symplicity.metadata=...
1
cas:
saml-sp:
symplicity:
metadata: "..."
1
java -Dcas.saml-sp.symplicity.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SYMPLICITY_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.symplicity.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.tableau.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Tableau.
CAS Property: cas.saml-sp.tableau.metadata
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.
.properties
files:
1
cas.saml-sp.tableau.metadata=...
1
cas:
saml-sp:
tableau:
metadata: "..."
1
java -Dcas.saml-sp.tableau.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TABLEAU_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.tableau.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.top-hat.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.TopHat.
CAS Property: cas.saml-sp.top-hat.metadata
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.
.properties
files:
1
cas.saml-sp.top-hat.metadata=...
1
cas:
saml-sp:
top-hat:
metadata: "..."
1
java -Dcas.saml-sp.top-hat.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TOP_HAT_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.top-hat.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.warp-wire.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WarpWire.
CAS Property: cas.saml-sp.warp-wire.metadata
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.
.properties
files:
1
cas.saml-sp.warp-wire.metadata=...
1
cas:
saml-sp:
warp-wire:
metadata: "..."
1
java -Dcas.saml-sp.warp-wire.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WARP_WIRE_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.warp-wire.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.web-advisor.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WebAdvisor.
CAS Property: cas.saml-sp.web-advisor.metadata
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.
.properties
files:
1
cas.saml-sp.web-advisor.metadata=...
1
cas:
saml-sp:
web-advisor:
metadata: "..."
1
java -Dcas.saml-sp.web-advisor.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEB_ADVISOR_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.web-advisor.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.webex.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Webex.
CAS Property: cas.saml-sp.webex.metadata
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.
.properties
files:
1
cas.saml-sp.webex.metadata=...
1
cas:
saml-sp:
webex:
metadata: "..."
1
java -Dcas.saml-sp.webex.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEBEX_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.webex.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.workday.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Workday.
CAS Property: cas.saml-sp.workday.metadata
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.
.properties
files:
1
cas.saml-sp.workday.metadata=...
1
cas:
saml-sp:
workday:
metadata: "..."
1
java -Dcas.saml-sp.workday.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WORKDAY_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.workday.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.yuja.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Yuja.
CAS Property: cas.saml-sp.yuja.metadata
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.
.properties
files:
1
cas.saml-sp.yuja.metadata=...
1
cas:
saml-sp:
yuja:
metadata: "..."
1
java -Dcas.saml-sp.yuja.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_YUJA_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.yuja.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zendesk.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zendesk.
CAS Property: cas.saml-sp.zendesk.metadata
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.
.properties
files:
1
cas.saml-sp.zendesk.metadata=...
1
cas:
saml-sp:
zendesk:
metadata: "..."
1
java -Dcas.saml-sp.zendesk.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZENDESK_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zendesk.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zimbra.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zimbra.
CAS Property: cas.saml-sp.zimbra.metadata
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.
.properties
files:
1
cas.saml-sp.zimbra.metadata=...
1
cas:
saml-sp:
zimbra:
metadata: "..."
1
java -Dcas.saml-sp.zimbra.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZIMBRA_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zimbra.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zoom.metadata=
The location of the metadata for this service provider. Can be a URL or another form of resource.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zoom.
CAS Property: cas.saml-sp.zoom.metadata
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.
.properties
files:
1
cas.saml-sp.zoom.metadata=...
1
cas:
saml-sp:
zoom:
metadata: "..."
1
java -Dcas.saml-sp.zoom.metadata="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZOOM_METADATA="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zoom.metadata="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.academic-health-plans.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
CAS Property:
|
1 |
cas.saml-sp.academic-health-plans.attributes=... |
1
cas:
saml-sp:
academic-health-plans:
attributes: "..."
1
java -Dcas.saml-sp.academic-health-plans.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ACADEMIC_HEALTH_PLANS_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.academic-health-plans.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.academic-health-plans.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AcademicHealthPlans.
CAS Property: cas.saml-sp.academic-health-plans.description
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.
.properties
files:
1
cas.saml-sp.academic-health-plans.description= SAML SP Integration
1
cas:
saml-sp:
academic-health-plans:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.academic-health-plans.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ACADEMIC_HEALTH_PLANS_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.academic-health-plans.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.academic-health-plans.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AcademicHealthPlans.
CAS Property: cas.saml-sp.academic-health-plans.entity-ids
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.
.properties
files:
1
cas.saml-sp.academic-health-plans.entity-ids=...
1
cas:
saml-sp:
academic-health-plans:
entity-ids: "..."
1
java -Dcas.saml-sp.academic-health-plans.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ACADEMIC_HEALTH_PLANS_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.academic-health-plans.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.academic-health-plans.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AcademicHealthPlans.
CAS Property: cas.saml-sp.academic-health-plans.name
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.
.properties
files:
1
cas.saml-sp.academic-health-plans.name=...
1
cas:
saml-sp:
academic-health-plans:
name: "..."
1
java -Dcas.saml-sp.academic-health-plans.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ACADEMIC_HEALTH_PLANS_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.academic-health-plans.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.academic-health-plans.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AcademicHealthPlans.
CAS Property: cas.saml-sp.academic-health-plans.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.academic-health-plans.name-id-attribute=...
1
cas:
saml-sp:
academic-health-plans:
name-id-attribute: "..."
1
java -Dcas.saml-sp.academic-health-plans.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ACADEMIC_HEALTH_PLANS_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.academic-health-plans.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.academic-health-plans.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AcademicHealthPlans.
CAS Property: cas.saml-sp.academic-health-plans.name-id-format
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.
.properties
files:
1
cas.saml-sp.academic-health-plans.name-id-format=...
1
cas:
saml-sp:
academic-health-plans:
name-id-format: "..."
1
java -Dcas.saml-sp.academic-health-plans.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ACADEMIC_HEALTH_PLANS_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.academic-health-plans.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.academic-health-plans.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AcademicHealthPlans.
CAS Property: cas.saml-sp.academic-health-plans.sign-assertions
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.
.properties
files:
1
cas.saml-sp.academic-health-plans.sign-assertions=...
1
cas:
saml-sp:
academic-health-plans:
sign-assertions: "..."
1
java -Dcas.saml-sp.academic-health-plans.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ACADEMIC_HEALTH_PLANS_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.academic-health-plans.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.academic-health-plans.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AcademicHealthPlans.
CAS Property: cas.saml-sp.academic-health-plans.sign-responses
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.
.properties
files:
1
cas.saml-sp.academic-health-plans.sign-responses=true
1
cas:
saml-sp:
academic-health-plans:
sign-responses: "true"
1
java -Dcas.saml-sp.academic-health-plans.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ACADEMIC_HEALTH_PLANS_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.academic-health-plans.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.academic-health-plans.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AcademicHealthPlans.
CAS Property: cas.saml-sp.academic-health-plans.signature-location
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.
.properties
files:
1
cas.saml-sp.academic-health-plans.signature-location=...
1
cas:
saml-sp:
academic-health-plans:
signature-location: "..."
1
java -Dcas.saml-sp.academic-health-plans.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ACADEMIC_HEALTH_PLANS_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.academic-health-plans.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.adobe-cloud.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AdobeCloud.
CAS Property: cas.saml-sp.adobe-cloud.attributes
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.
.properties
files:
1
cas.saml-sp.adobe-cloud.attributes=...
1
cas:
saml-sp:
adobe-cloud:
attributes: "..."
1
java -Dcas.saml-sp.adobe-cloud.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ADOBE_CLOUD_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.adobe-cloud.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.adobe-cloud.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AdobeCloud.
CAS Property: cas.saml-sp.adobe-cloud.description
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.
.properties
files:
1
cas.saml-sp.adobe-cloud.description= SAML SP Integration
1
cas:
saml-sp:
adobe-cloud:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.adobe-cloud.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ADOBE_CLOUD_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.adobe-cloud.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.adobe-cloud.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AdobeCloud.
CAS Property: cas.saml-sp.adobe-cloud.entity-ids
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.
.properties
files:
1
cas.saml-sp.adobe-cloud.entity-ids=...
1
cas:
saml-sp:
adobe-cloud:
entity-ids: "..."
1
java -Dcas.saml-sp.adobe-cloud.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ADOBE_CLOUD_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.adobe-cloud.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.adobe-cloud.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AdobeCloud.
CAS Property: cas.saml-sp.adobe-cloud.name
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.
.properties
files:
1
cas.saml-sp.adobe-cloud.name=...
1
cas:
saml-sp:
adobe-cloud:
name: "..."
1
java -Dcas.saml-sp.adobe-cloud.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ADOBE_CLOUD_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.adobe-cloud.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.adobe-cloud.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AdobeCloud.
CAS Property: cas.saml-sp.adobe-cloud.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.adobe-cloud.name-id-attribute=...
1
cas:
saml-sp:
adobe-cloud:
name-id-attribute: "..."
1
java -Dcas.saml-sp.adobe-cloud.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ADOBE_CLOUD_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.adobe-cloud.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.adobe-cloud.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AdobeCloud.
CAS Property: cas.saml-sp.adobe-cloud.name-id-format
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.
.properties
files:
1
cas.saml-sp.adobe-cloud.name-id-format=...
1
cas:
saml-sp:
adobe-cloud:
name-id-format: "..."
1
java -Dcas.saml-sp.adobe-cloud.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ADOBE_CLOUD_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.adobe-cloud.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.adobe-cloud.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AdobeCloud.
CAS Property: cas.saml-sp.adobe-cloud.sign-assertions
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.
.properties
files:
1
cas.saml-sp.adobe-cloud.sign-assertions=...
1
cas:
saml-sp:
adobe-cloud:
sign-assertions: "..."
1
java -Dcas.saml-sp.adobe-cloud.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ADOBE_CLOUD_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.adobe-cloud.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.adobe-cloud.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AdobeCloud.
CAS Property: cas.saml-sp.adobe-cloud.sign-responses
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.
.properties
files:
1
cas.saml-sp.adobe-cloud.sign-responses=true
1
cas:
saml-sp:
adobe-cloud:
sign-responses: "true"
1
java -Dcas.saml-sp.adobe-cloud.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ADOBE_CLOUD_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.adobe-cloud.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.adobe-cloud.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AdobeCloud.
CAS Property: cas.saml-sp.adobe-cloud.signature-location
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.
.properties
files:
1
cas.saml-sp.adobe-cloud.signature-location=...
1
cas:
saml-sp:
adobe-cloud:
signature-location: "..."
1
java -Dcas.saml-sp.adobe-cloud.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ADOBE_CLOUD_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.adobe-cloud.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.amazon.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Amazon.
CAS Property: cas.saml-sp.amazon.attributes
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.
.properties
files:
1
cas.saml-sp.amazon.attributes=...
1
cas:
saml-sp:
amazon:
attributes: "..."
1
java -Dcas.saml-sp.amazon.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_AMAZON_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.amazon.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.amazon.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Amazon.
CAS Property: cas.saml-sp.amazon.description
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.
.properties
files:
1
cas.saml-sp.amazon.description= SAML SP Integration
1
cas:
saml-sp:
amazon:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.amazon.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_AMAZON_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.amazon.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.amazon.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Amazon.
CAS Property: cas.saml-sp.amazon.entity-ids
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.
.properties
files:
1
cas.saml-sp.amazon.entity-ids=...
1
cas:
saml-sp:
amazon:
entity-ids: "..."
1
java -Dcas.saml-sp.amazon.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_AMAZON_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.amazon.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.amazon.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Amazon.
CAS Property: cas.saml-sp.amazon.name
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.
.properties
files:
1
cas.saml-sp.amazon.name=...
1
cas:
saml-sp:
amazon:
name: "..."
1
java -Dcas.saml-sp.amazon.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_AMAZON_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.amazon.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.amazon.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Amazon.
CAS Property: cas.saml-sp.amazon.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.amazon.name-id-attribute=...
1
cas:
saml-sp:
amazon:
name-id-attribute: "..."
1
java -Dcas.saml-sp.amazon.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_AMAZON_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.amazon.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.amazon.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Amazon.
CAS Property: cas.saml-sp.amazon.name-id-format
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.
.properties
files:
1
cas.saml-sp.amazon.name-id-format=...
1
cas:
saml-sp:
amazon:
name-id-format: "..."
1
java -Dcas.saml-sp.amazon.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_AMAZON_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.amazon.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.amazon.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Amazon.
CAS Property: cas.saml-sp.amazon.sign-assertions
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.
.properties
files:
1
cas.saml-sp.amazon.sign-assertions=...
1
cas:
saml-sp:
amazon:
sign-assertions: "..."
1
java -Dcas.saml-sp.amazon.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_AMAZON_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.amazon.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.amazon.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Amazon.
CAS Property: cas.saml-sp.amazon.sign-responses
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.
.properties
files:
1
cas.saml-sp.amazon.sign-responses=true
1
cas:
saml-sp:
amazon:
sign-responses: "true"
1
java -Dcas.saml-sp.amazon.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_AMAZON_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.amazon.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.amazon.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Amazon.
CAS Property: cas.saml-sp.amazon.signature-location
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.
.properties
files:
1
cas.saml-sp.amazon.signature-location=...
1
cas:
saml-sp:
amazon:
signature-location: "..."
1
java -Dcas.saml-sp.amazon.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_AMAZON_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.amazon.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.app-dynamics.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AppDynamics.
CAS Property: cas.saml-sp.app-dynamics.attributes
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.
.properties
files:
1
cas.saml-sp.app-dynamics.attributes=...
1
cas:
saml-sp:
app-dynamics:
attributes: "..."
1
java -Dcas.saml-sp.app-dynamics.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_APP_DYNAMICS_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.app-dynamics.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.app-dynamics.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AppDynamics.
CAS Property: cas.saml-sp.app-dynamics.description
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.
.properties
files:
1
cas.saml-sp.app-dynamics.description= SAML SP Integration
1
cas:
saml-sp:
app-dynamics:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.app-dynamics.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_APP_DYNAMICS_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.app-dynamics.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.app-dynamics.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AppDynamics.
CAS Property: cas.saml-sp.app-dynamics.entity-ids
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.
.properties
files:
1
cas.saml-sp.app-dynamics.entity-ids=...
1
cas:
saml-sp:
app-dynamics:
entity-ids: "..."
1
java -Dcas.saml-sp.app-dynamics.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_APP_DYNAMICS_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.app-dynamics.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.app-dynamics.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AppDynamics.
CAS Property: cas.saml-sp.app-dynamics.name
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.
.properties
files:
1
cas.saml-sp.app-dynamics.name=...
1
cas:
saml-sp:
app-dynamics:
name: "..."
1
java -Dcas.saml-sp.app-dynamics.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_APP_DYNAMICS_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.app-dynamics.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.app-dynamics.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AppDynamics.
CAS Property: cas.saml-sp.app-dynamics.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.app-dynamics.name-id-attribute=...
1
cas:
saml-sp:
app-dynamics:
name-id-attribute: "..."
1
java -Dcas.saml-sp.app-dynamics.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_APP_DYNAMICS_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.app-dynamics.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.app-dynamics.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AppDynamics.
CAS Property: cas.saml-sp.app-dynamics.name-id-format
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.
.properties
files:
1
cas.saml-sp.app-dynamics.name-id-format=...
1
cas:
saml-sp:
app-dynamics:
name-id-format: "..."
1
java -Dcas.saml-sp.app-dynamics.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_APP_DYNAMICS_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.app-dynamics.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.app-dynamics.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AppDynamics.
CAS Property: cas.saml-sp.app-dynamics.sign-assertions
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.
.properties
files:
1
cas.saml-sp.app-dynamics.sign-assertions=...
1
cas:
saml-sp:
app-dynamics:
sign-assertions: "..."
1
java -Dcas.saml-sp.app-dynamics.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_APP_DYNAMICS_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.app-dynamics.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.app-dynamics.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AppDynamics.
CAS Property: cas.saml-sp.app-dynamics.sign-responses
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.
.properties
files:
1
cas.saml-sp.app-dynamics.sign-responses=true
1
cas:
saml-sp:
app-dynamics:
sign-responses: "true"
1
java -Dcas.saml-sp.app-dynamics.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_APP_DYNAMICS_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.app-dynamics.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.app-dynamics.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.AppDynamics.
CAS Property: cas.saml-sp.app-dynamics.signature-location
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.
.properties
files:
1
cas.saml-sp.app-dynamics.signature-location=...
1
cas:
saml-sp:
app-dynamics:
signature-location: "..."
1
java -Dcas.saml-sp.app-dynamics.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_APP_DYNAMICS_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.app-dynamics.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arc-g-i-s.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArcGIS.
CAS Property: cas.saml-sp.arc-g-i-s.attributes
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.
.properties
files:
1
cas.saml-sp.arc-g-i-s.attributes=...
1
cas:
saml-sp:
arc-g-i-s:
attributes: "..."
1
java -Dcas.saml-sp.arc-g-i-s.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARC_G_I_S_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arc-g-i-s.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arc-g-i-s.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArcGIS.
CAS Property: cas.saml-sp.arc-g-i-s.description
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.
.properties
files:
1
cas.saml-sp.arc-g-i-s.description= SAML SP Integration
1
cas:
saml-sp:
arc-g-i-s:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.arc-g-i-s.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARC_G_I_S_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arc-g-i-s.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arc-g-i-s.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArcGIS.
CAS Property: cas.saml-sp.arc-g-i-s.entity-ids
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.
.properties
files:
1
cas.saml-sp.arc-g-i-s.entity-ids=...
1
cas:
saml-sp:
arc-g-i-s:
entity-ids: "..."
1
java -Dcas.saml-sp.arc-g-i-s.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARC_G_I_S_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arc-g-i-s.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arc-g-i-s.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArcGIS.
CAS Property: cas.saml-sp.arc-g-i-s.name
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.
.properties
files:
1
cas.saml-sp.arc-g-i-s.name=...
1
cas:
saml-sp:
arc-g-i-s:
name: "..."
1
java -Dcas.saml-sp.arc-g-i-s.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARC_G_I_S_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arc-g-i-s.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arc-g-i-s.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArcGIS.
CAS Property: cas.saml-sp.arc-g-i-s.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.arc-g-i-s.name-id-attribute=...
1
cas:
saml-sp:
arc-g-i-s:
name-id-attribute: "..."
1
java -Dcas.saml-sp.arc-g-i-s.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARC_G_I_S_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arc-g-i-s.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arc-g-i-s.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArcGIS.
CAS Property: cas.saml-sp.arc-g-i-s.name-id-format
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.
.properties
files:
1
cas.saml-sp.arc-g-i-s.name-id-format=...
1
cas:
saml-sp:
arc-g-i-s:
name-id-format: "..."
1
java -Dcas.saml-sp.arc-g-i-s.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARC_G_I_S_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arc-g-i-s.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arc-g-i-s.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArcGIS.
CAS Property: cas.saml-sp.arc-g-i-s.sign-assertions
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.
.properties
files:
1
cas.saml-sp.arc-g-i-s.sign-assertions=...
1
cas:
saml-sp:
arc-g-i-s:
sign-assertions: "..."
1
java -Dcas.saml-sp.arc-g-i-s.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARC_G_I_S_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arc-g-i-s.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arc-g-i-s.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArcGIS.
CAS Property: cas.saml-sp.arc-g-i-s.sign-responses
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.
.properties
files:
1
cas.saml-sp.arc-g-i-s.sign-responses=true
1
cas:
saml-sp:
arc-g-i-s:
sign-responses: "true"
1
java -Dcas.saml-sp.arc-g-i-s.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARC_G_I_S_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arc-g-i-s.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arc-g-i-s.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArcGIS.
CAS Property: cas.saml-sp.arc-g-i-s.signature-location
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.
.properties
files:
1
cas.saml-sp.arc-g-i-s.signature-location=...
1
cas:
saml-sp:
arc-g-i-s:
signature-location: "..."
1
java -Dcas.saml-sp.arc-g-i-s.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARC_G_I_S_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arc-g-i-s.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arms-software.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArmsSoftware.
CAS Property: cas.saml-sp.arms-software.attributes
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.
.properties
files:
1
cas.saml-sp.arms-software.attributes=...
1
cas:
saml-sp:
arms-software:
attributes: "..."
1
java -Dcas.saml-sp.arms-software.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARMS_SOFTWARE_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arms-software.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arms-software.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArmsSoftware.
CAS Property: cas.saml-sp.arms-software.description
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.
.properties
files:
1
cas.saml-sp.arms-software.description= SAML SP Integration
1
cas:
saml-sp:
arms-software:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.arms-software.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARMS_SOFTWARE_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arms-software.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arms-software.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArmsSoftware.
CAS Property: cas.saml-sp.arms-software.entity-ids
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.
.properties
files:
1
cas.saml-sp.arms-software.entity-ids=...
1
cas:
saml-sp:
arms-software:
entity-ids: "..."
1
java -Dcas.saml-sp.arms-software.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARMS_SOFTWARE_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arms-software.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arms-software.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArmsSoftware.
CAS Property: cas.saml-sp.arms-software.name
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.
.properties
files:
1
cas.saml-sp.arms-software.name=...
1
cas:
saml-sp:
arms-software:
name: "..."
1
java -Dcas.saml-sp.arms-software.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARMS_SOFTWARE_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arms-software.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arms-software.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArmsSoftware.
CAS Property: cas.saml-sp.arms-software.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.arms-software.name-id-attribute=...
1
cas:
saml-sp:
arms-software:
name-id-attribute: "..."
1
java -Dcas.saml-sp.arms-software.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARMS_SOFTWARE_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arms-software.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arms-software.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArmsSoftware.
CAS Property: cas.saml-sp.arms-software.name-id-format
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.
.properties
files:
1
cas.saml-sp.arms-software.name-id-format=...
1
cas:
saml-sp:
arms-software:
name-id-format: "..."
1
java -Dcas.saml-sp.arms-software.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARMS_SOFTWARE_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arms-software.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arms-software.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArmsSoftware.
CAS Property: cas.saml-sp.arms-software.sign-assertions
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.
.properties
files:
1
cas.saml-sp.arms-software.sign-assertions=...
1
cas:
saml-sp:
arms-software:
sign-assertions: "..."
1
java -Dcas.saml-sp.arms-software.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARMS_SOFTWARE_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arms-software.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arms-software.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArmsSoftware.
CAS Property: cas.saml-sp.arms-software.sign-responses
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.
.properties
files:
1
cas.saml-sp.arms-software.sign-responses=true
1
cas:
saml-sp:
arms-software:
sign-responses: "true"
1
java -Dcas.saml-sp.arms-software.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARMS_SOFTWARE_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arms-software.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.arms-software.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ArmsSoftware.
CAS Property: cas.saml-sp.arms-software.signature-location
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.
.properties
files:
1
cas.saml-sp.arms-software.signature-location=...
1
cas:
saml-sp:
arms-software:
signature-location: "..."
1
java -Dcas.saml-sp.arms-software.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ARMS_SOFTWARE_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.arms-software.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.asana.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Asana.
CAS Property: cas.saml-sp.asana.attributes
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.
.properties
files:
1
cas.saml-sp.asana.attributes=...
1
cas:
saml-sp:
asana:
attributes: "..."
1
java -Dcas.saml-sp.asana.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ASANA_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.asana.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.asana.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Asana.
CAS Property: cas.saml-sp.asana.description
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.
.properties
files:
1
cas.saml-sp.asana.description= SAML SP Integration
1
cas:
saml-sp:
asana:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.asana.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ASANA_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.asana.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.asana.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Asana.
CAS Property: cas.saml-sp.asana.entity-ids
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.
.properties
files:
1
cas.saml-sp.asana.entity-ids=...
1
cas:
saml-sp:
asana:
entity-ids: "..."
1
java -Dcas.saml-sp.asana.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ASANA_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.asana.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.asana.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Asana.
CAS Property: cas.saml-sp.asana.name
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.
.properties
files:
1
cas.saml-sp.asana.name=...
1
cas:
saml-sp:
asana:
name: "..."
1
java -Dcas.saml-sp.asana.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ASANA_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.asana.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.asana.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Asana.
CAS Property: cas.saml-sp.asana.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.asana.name-id-attribute=...
1
cas:
saml-sp:
asana:
name-id-attribute: "..."
1
java -Dcas.saml-sp.asana.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ASANA_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.asana.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.asana.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Asana.
CAS Property: cas.saml-sp.asana.name-id-format
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.
.properties
files:
1
cas.saml-sp.asana.name-id-format=...
1
cas:
saml-sp:
asana:
name-id-format: "..."
1
java -Dcas.saml-sp.asana.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ASANA_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.asana.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.asana.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Asana.
CAS Property: cas.saml-sp.asana.sign-assertions
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.
.properties
files:
1
cas.saml-sp.asana.sign-assertions=...
1
cas:
saml-sp:
asana:
sign-assertions: "..."
1
java -Dcas.saml-sp.asana.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ASANA_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.asana.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.asana.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Asana.
CAS Property: cas.saml-sp.asana.sign-responses
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.
.properties
files:
1
cas.saml-sp.asana.sign-responses=true
1
cas:
saml-sp:
asana:
sign-responses: "true"
1
java -Dcas.saml-sp.asana.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ASANA_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.asana.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.asana.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Asana.
CAS Property: cas.saml-sp.asana.signature-location
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.
.properties
files:
1
cas.saml-sp.asana.signature-location=...
1
cas:
saml-sp:
asana:
signature-location: "..."
1
java -Dcas.saml-sp.asana.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ASANA_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.asana.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.benefit-focus.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BenefitFocus.
CAS Property: cas.saml-sp.benefit-focus.attributes
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.
.properties
files:
1
cas.saml-sp.benefit-focus.attributes=...
1
cas:
saml-sp:
benefit-focus:
attributes: "..."
1
java -Dcas.saml-sp.benefit-focus.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BENEFIT_FOCUS_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.benefit-focus.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.benefit-focus.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BenefitFocus.
CAS Property: cas.saml-sp.benefit-focus.description
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.
.properties
files:
1
cas.saml-sp.benefit-focus.description= SAML SP Integration
1
cas:
saml-sp:
benefit-focus:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.benefit-focus.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BENEFIT_FOCUS_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.benefit-focus.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.benefit-focus.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BenefitFocus.
CAS Property: cas.saml-sp.benefit-focus.entity-ids
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.
.properties
files:
1
cas.saml-sp.benefit-focus.entity-ids=...
1
cas:
saml-sp:
benefit-focus:
entity-ids: "..."
1
java -Dcas.saml-sp.benefit-focus.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BENEFIT_FOCUS_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.benefit-focus.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.benefit-focus.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BenefitFocus.
CAS Property: cas.saml-sp.benefit-focus.name
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.
.properties
files:
1
cas.saml-sp.benefit-focus.name=...
1
cas:
saml-sp:
benefit-focus:
name: "..."
1
java -Dcas.saml-sp.benefit-focus.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BENEFIT_FOCUS_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.benefit-focus.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.benefit-focus.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BenefitFocus.
CAS Property: cas.saml-sp.benefit-focus.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.benefit-focus.name-id-attribute=...
1
cas:
saml-sp:
benefit-focus:
name-id-attribute: "..."
1
java -Dcas.saml-sp.benefit-focus.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BENEFIT_FOCUS_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.benefit-focus.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.benefit-focus.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BenefitFocus.
CAS Property: cas.saml-sp.benefit-focus.name-id-format
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.
.properties
files:
1
cas.saml-sp.benefit-focus.name-id-format=...
1
cas:
saml-sp:
benefit-focus:
name-id-format: "..."
1
java -Dcas.saml-sp.benefit-focus.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BENEFIT_FOCUS_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.benefit-focus.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.benefit-focus.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BenefitFocus.
CAS Property: cas.saml-sp.benefit-focus.sign-assertions
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.
.properties
files:
1
cas.saml-sp.benefit-focus.sign-assertions=...
1
cas:
saml-sp:
benefit-focus:
sign-assertions: "..."
1
java -Dcas.saml-sp.benefit-focus.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BENEFIT_FOCUS_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.benefit-focus.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.benefit-focus.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BenefitFocus.
CAS Property: cas.saml-sp.benefit-focus.sign-responses
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.
.properties
files:
1
cas.saml-sp.benefit-focus.sign-responses=true
1
cas:
saml-sp:
benefit-focus:
sign-responses: "true"
1
java -Dcas.saml-sp.benefit-focus.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BENEFIT_FOCUS_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.benefit-focus.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.benefit-focus.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BenefitFocus.
CAS Property: cas.saml-sp.benefit-focus.signature-location
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.
.properties
files:
1
cas.saml-sp.benefit-focus.signature-location=...
1
cas:
saml-sp:
benefit-focus:
signature-location: "..."
1
java -Dcas.saml-sp.benefit-focus.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BENEFIT_FOCUS_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.benefit-focus.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.black-baud.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BlackBaud.
CAS Property: cas.saml-sp.black-baud.attributes
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.
.properties
files:
1
cas.saml-sp.black-baud.attributes=...
1
cas:
saml-sp:
black-baud:
attributes: "..."
1
java -Dcas.saml-sp.black-baud.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BLACK_BAUD_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.black-baud.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.black-baud.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BlackBaud.
CAS Property: cas.saml-sp.black-baud.description
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.
.properties
files:
1
cas.saml-sp.black-baud.description= SAML SP Integration
1
cas:
saml-sp:
black-baud:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.black-baud.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BLACK_BAUD_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.black-baud.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.black-baud.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BlackBaud.
CAS Property: cas.saml-sp.black-baud.entity-ids
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.
.properties
files:
1
cas.saml-sp.black-baud.entity-ids=...
1
cas:
saml-sp:
black-baud:
entity-ids: "..."
1
java -Dcas.saml-sp.black-baud.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BLACK_BAUD_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.black-baud.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.black-baud.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BlackBaud.
CAS Property: cas.saml-sp.black-baud.name
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.
.properties
files:
1
cas.saml-sp.black-baud.name=...
1
cas:
saml-sp:
black-baud:
name: "..."
1
java -Dcas.saml-sp.black-baud.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BLACK_BAUD_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.black-baud.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.black-baud.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BlackBaud.
CAS Property: cas.saml-sp.black-baud.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.black-baud.name-id-attribute=...
1
cas:
saml-sp:
black-baud:
name-id-attribute: "..."
1
java -Dcas.saml-sp.black-baud.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BLACK_BAUD_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.black-baud.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.black-baud.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BlackBaud.
CAS Property: cas.saml-sp.black-baud.name-id-format
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.
.properties
files:
1
cas.saml-sp.black-baud.name-id-format=...
1
cas:
saml-sp:
black-baud:
name-id-format: "..."
1
java -Dcas.saml-sp.black-baud.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BLACK_BAUD_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.black-baud.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.black-baud.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BlackBaud.
CAS Property: cas.saml-sp.black-baud.sign-assertions
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.
.properties
files:
1
cas.saml-sp.black-baud.sign-assertions=...
1
cas:
saml-sp:
black-baud:
sign-assertions: "..."
1
java -Dcas.saml-sp.black-baud.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BLACK_BAUD_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.black-baud.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.black-baud.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BlackBaud.
CAS Property: cas.saml-sp.black-baud.sign-responses
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.
.properties
files:
1
cas.saml-sp.black-baud.sign-responses=true
1
cas:
saml-sp:
black-baud:
sign-responses: "true"
1
java -Dcas.saml-sp.black-baud.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BLACK_BAUD_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.black-baud.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.black-baud.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.BlackBaud.
CAS Property: cas.saml-sp.black-baud.signature-location
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.
.properties
files:
1
cas.saml-sp.black-baud.signature-location=...
1
cas:
saml-sp:
black-baud:
signature-location: "..."
1
java -Dcas.saml-sp.black-baud.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BLACK_BAUD_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.black-baud.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.box.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Box.
CAS Property: cas.saml-sp.box.attributes
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.
.properties
files:
1
cas.saml-sp.box.attributes=...
1
cas:
saml-sp:
box:
attributes: "..."
1
java -Dcas.saml-sp.box.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BOX_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.box.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.box.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Box.
CAS Property: cas.saml-sp.box.description
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.
.properties
files:
1
cas.saml-sp.box.description= SAML SP Integration
1
cas:
saml-sp:
box:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.box.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BOX_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.box.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.box.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Box.
CAS Property: cas.saml-sp.box.entity-ids
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.
.properties
files:
1
cas.saml-sp.box.entity-ids=...
1
cas:
saml-sp:
box:
entity-ids: "..."
1
java -Dcas.saml-sp.box.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BOX_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.box.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.box.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Box.
CAS Property: cas.saml-sp.box.name
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.
.properties
files:
1
cas.saml-sp.box.name=...
1
cas:
saml-sp:
box:
name: "..."
1
java -Dcas.saml-sp.box.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BOX_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.box.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.box.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Box.
CAS Property: cas.saml-sp.box.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.box.name-id-attribute=...
1
cas:
saml-sp:
box:
name-id-attribute: "..."
1
java -Dcas.saml-sp.box.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BOX_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.box.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.box.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Box.
CAS Property: cas.saml-sp.box.name-id-format
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.
.properties
files:
1
cas.saml-sp.box.name-id-format=...
1
cas:
saml-sp:
box:
name-id-format: "..."
1
java -Dcas.saml-sp.box.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BOX_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.box.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.box.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Box.
CAS Property: cas.saml-sp.box.sign-assertions
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.
.properties
files:
1
cas.saml-sp.box.sign-assertions=...
1
cas:
saml-sp:
box:
sign-assertions: "..."
1
java -Dcas.saml-sp.box.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BOX_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.box.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.box.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Box.
CAS Property: cas.saml-sp.box.sign-responses
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.
.properties
files:
1
cas.saml-sp.box.sign-responses=true
1
cas:
saml-sp:
box:
sign-responses: "true"
1
java -Dcas.saml-sp.box.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BOX_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.box.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.box.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Box.
CAS Property: cas.saml-sp.box.signature-location
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.
.properties
files:
1
cas.saml-sp.box.signature-location=...
1
cas:
saml-sp:
box:
signature-location: "..."
1
java -Dcas.saml-sp.box.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BOX_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.box.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.bynder.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Bynder.
CAS Property: cas.saml-sp.bynder.attributes
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.
.properties
files:
1
cas.saml-sp.bynder.attributes=...
1
cas:
saml-sp:
bynder:
attributes: "..."
1
java -Dcas.saml-sp.bynder.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BYNDER_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.bynder.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.bynder.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Bynder.
CAS Property: cas.saml-sp.bynder.description
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.
.properties
files:
1
cas.saml-sp.bynder.description= SAML SP Integration
1
cas:
saml-sp:
bynder:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.bynder.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BYNDER_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.bynder.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.bynder.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Bynder.
CAS Property: cas.saml-sp.bynder.entity-ids
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.
.properties
files:
1
cas.saml-sp.bynder.entity-ids=...
1
cas:
saml-sp:
bynder:
entity-ids: "..."
1
java -Dcas.saml-sp.bynder.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BYNDER_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.bynder.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.bynder.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Bynder.
CAS Property: cas.saml-sp.bynder.name
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.
.properties
files:
1
cas.saml-sp.bynder.name=...
1
cas:
saml-sp:
bynder:
name: "..."
1
java -Dcas.saml-sp.bynder.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BYNDER_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.bynder.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.bynder.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Bynder.
CAS Property: cas.saml-sp.bynder.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.bynder.name-id-attribute=...
1
cas:
saml-sp:
bynder:
name-id-attribute: "..."
1
java -Dcas.saml-sp.bynder.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BYNDER_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.bynder.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.bynder.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Bynder.
CAS Property: cas.saml-sp.bynder.name-id-format
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.
.properties
files:
1
cas.saml-sp.bynder.name-id-format=...
1
cas:
saml-sp:
bynder:
name-id-format: "..."
1
java -Dcas.saml-sp.bynder.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BYNDER_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.bynder.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.bynder.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Bynder.
CAS Property: cas.saml-sp.bynder.sign-assertions
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.
.properties
files:
1
cas.saml-sp.bynder.sign-assertions=...
1
cas:
saml-sp:
bynder:
sign-assertions: "..."
1
java -Dcas.saml-sp.bynder.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BYNDER_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.bynder.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.bynder.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Bynder.
CAS Property: cas.saml-sp.bynder.sign-responses
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.
.properties
files:
1
cas.saml-sp.bynder.sign-responses=true
1
cas:
saml-sp:
bynder:
sign-responses: "true"
1
java -Dcas.saml-sp.bynder.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BYNDER_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.bynder.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.bynder.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Bynder.
CAS Property: cas.saml-sp.bynder.signature-location
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.
.properties
files:
1
cas.saml-sp.bynder.signature-location=...
1
cas:
saml-sp:
bynder:
signature-location: "..."
1
java -Dcas.saml-sp.bynder.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_BYNDER_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.bynder.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cccco.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CaliforniaCommunityColleges.
CAS Property: cas.saml-sp.cccco.attributes
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.
.properties
files:
1
cas.saml-sp.cccco.attributes=...
1
cas:
saml-sp:
cccco:
attributes: "..."
1
java -Dcas.saml-sp.cccco.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CCCCO_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cccco.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cccco.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CaliforniaCommunityColleges.
CAS Property: cas.saml-sp.cccco.description
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.
.properties
files:
1
cas.saml-sp.cccco.description= SAML SP Integration
1
cas:
saml-sp:
cccco:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.cccco.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CCCCO_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cccco.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cccco.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CaliforniaCommunityColleges.
CAS Property: cas.saml-sp.cccco.entity-ids
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.
.properties
files:
1
cas.saml-sp.cccco.entity-ids=...
1
cas:
saml-sp:
cccco:
entity-ids: "..."
1
java -Dcas.saml-sp.cccco.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CCCCO_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cccco.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cccco.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CaliforniaCommunityColleges.
CAS Property: cas.saml-sp.cccco.name
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.
.properties
files:
1
cas.saml-sp.cccco.name=...
1
cas:
saml-sp:
cccco:
name: "..."
1
java -Dcas.saml-sp.cccco.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CCCCO_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cccco.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cccco.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CaliforniaCommunityColleges.
CAS Property: cas.saml-sp.cccco.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.cccco.name-id-attribute=...
1
cas:
saml-sp:
cccco:
name-id-attribute: "..."
1
java -Dcas.saml-sp.cccco.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CCCCO_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cccco.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cccco.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CaliforniaCommunityColleges.
CAS Property: cas.saml-sp.cccco.name-id-format
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.
.properties
files:
1
cas.saml-sp.cccco.name-id-format=...
1
cas:
saml-sp:
cccco:
name-id-format: "..."
1
java -Dcas.saml-sp.cccco.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CCCCO_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cccco.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cccco.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CaliforniaCommunityColleges.
CAS Property: cas.saml-sp.cccco.sign-assertions
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.
.properties
files:
1
cas.saml-sp.cccco.sign-assertions=...
1
cas:
saml-sp:
cccco:
sign-assertions: "..."
1
java -Dcas.saml-sp.cccco.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CCCCO_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cccco.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cccco.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CaliforniaCommunityColleges.
CAS Property: cas.saml-sp.cccco.sign-responses
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.
.properties
files:
1
cas.saml-sp.cccco.sign-responses=true
1
cas:
saml-sp:
cccco:
sign-responses: "true"
1
java -Dcas.saml-sp.cccco.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CCCCO_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cccco.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cccco.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CaliforniaCommunityColleges.
CAS Property: cas.saml-sp.cccco.signature-location
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.
.properties
files:
1
cas.saml-sp.cccco.signature-location=...
1
cas:
saml-sp:
cccco:
signature-location: "..."
1
java -Dcas.saml-sp.cccco.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CCCCO_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cccco.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cher-well.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CherWell.
CAS Property: cas.saml-sp.cher-well.attributes
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.
.properties
files:
1
cas.saml-sp.cher-well.attributes=...
1
cas:
saml-sp:
cher-well:
attributes: "..."
1
java -Dcas.saml-sp.cher-well.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CHER_WELL_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cher-well.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cher-well.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CherWell.
CAS Property: cas.saml-sp.cher-well.description
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.
.properties
files:
1
cas.saml-sp.cher-well.description= SAML SP Integration
1
cas:
saml-sp:
cher-well:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.cher-well.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CHER_WELL_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cher-well.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cher-well.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CherWell.
CAS Property: cas.saml-sp.cher-well.entity-ids
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.
.properties
files:
1
cas.saml-sp.cher-well.entity-ids=...
1
cas:
saml-sp:
cher-well:
entity-ids: "..."
1
java -Dcas.saml-sp.cher-well.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CHER_WELL_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cher-well.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cher-well.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CherWell.
CAS Property: cas.saml-sp.cher-well.name
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.
.properties
files:
1
cas.saml-sp.cher-well.name=...
1
cas:
saml-sp:
cher-well:
name: "..."
1
java -Dcas.saml-sp.cher-well.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CHER_WELL_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cher-well.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cher-well.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CherWell.
CAS Property: cas.saml-sp.cher-well.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.cher-well.name-id-attribute=...
1
cas:
saml-sp:
cher-well:
name-id-attribute: "..."
1
java -Dcas.saml-sp.cher-well.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CHER_WELL_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cher-well.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cher-well.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CherWell.
CAS Property: cas.saml-sp.cher-well.name-id-format
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.
.properties
files:
1
cas.saml-sp.cher-well.name-id-format=...
1
cas:
saml-sp:
cher-well:
name-id-format: "..."
1
java -Dcas.saml-sp.cher-well.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CHER_WELL_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cher-well.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cher-well.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CherWell.
CAS Property: cas.saml-sp.cher-well.sign-assertions
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.
.properties
files:
1
cas.saml-sp.cher-well.sign-assertions=...
1
cas:
saml-sp:
cher-well:
sign-assertions: "..."
1
java -Dcas.saml-sp.cher-well.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CHER_WELL_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cher-well.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cher-well.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CherWell.
CAS Property: cas.saml-sp.cher-well.sign-responses
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.
.properties
files:
1
cas.saml-sp.cher-well.sign-responses=true
1
cas:
saml-sp:
cher-well:
sign-responses: "true"
1
java -Dcas.saml-sp.cher-well.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CHER_WELL_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cher-well.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cher-well.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CherWell.
CAS Property: cas.saml-sp.cher-well.signature-location
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.
.properties
files:
1
cas.saml-sp.cher-well.signature-location=...
1
cas:
saml-sp:
cher-well:
signature-location: "..."
1
java -Dcas.saml-sp.cher-well.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CHER_WELL_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cher-well.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.concur-solutions.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ConcurSolutions.
CAS Property: cas.saml-sp.concur-solutions.attributes
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.
.properties
files:
1
cas.saml-sp.concur-solutions.attributes=...
1
cas:
saml-sp:
concur-solutions:
attributes: "..."
1
java -Dcas.saml-sp.concur-solutions.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONCUR_SOLUTIONS_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.concur-solutions.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.concur-solutions.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ConcurSolutions.
CAS Property: cas.saml-sp.concur-solutions.description
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.
.properties
files:
1
cas.saml-sp.concur-solutions.description= SAML SP Integration
1
cas:
saml-sp:
concur-solutions:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.concur-solutions.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONCUR_SOLUTIONS_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.concur-solutions.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.concur-solutions.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ConcurSolutions.
CAS Property: cas.saml-sp.concur-solutions.entity-ids
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.
.properties
files:
1
cas.saml-sp.concur-solutions.entity-ids=...
1
cas:
saml-sp:
concur-solutions:
entity-ids: "..."
1
java -Dcas.saml-sp.concur-solutions.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONCUR_SOLUTIONS_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.concur-solutions.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.concur-solutions.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ConcurSolutions.
CAS Property: cas.saml-sp.concur-solutions.name
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.
.properties
files:
1
cas.saml-sp.concur-solutions.name=...
1
cas:
saml-sp:
concur-solutions:
name: "..."
1
java -Dcas.saml-sp.concur-solutions.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONCUR_SOLUTIONS_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.concur-solutions.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.concur-solutions.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ConcurSolutions.
CAS Property: cas.saml-sp.concur-solutions.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.concur-solutions.name-id-attribute=...
1
cas:
saml-sp:
concur-solutions:
name-id-attribute: "..."
1
java -Dcas.saml-sp.concur-solutions.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONCUR_SOLUTIONS_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.concur-solutions.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.concur-solutions.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ConcurSolutions.
CAS Property: cas.saml-sp.concur-solutions.name-id-format
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.
.properties
files:
1
cas.saml-sp.concur-solutions.name-id-format=...
1
cas:
saml-sp:
concur-solutions:
name-id-format: "..."
1
java -Dcas.saml-sp.concur-solutions.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONCUR_SOLUTIONS_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.concur-solutions.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.concur-solutions.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ConcurSolutions.
CAS Property: cas.saml-sp.concur-solutions.sign-assertions
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.
.properties
files:
1
cas.saml-sp.concur-solutions.sign-assertions=...
1
cas:
saml-sp:
concur-solutions:
sign-assertions: "..."
1
java -Dcas.saml-sp.concur-solutions.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONCUR_SOLUTIONS_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.concur-solutions.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.concur-solutions.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ConcurSolutions.
CAS Property: cas.saml-sp.concur-solutions.sign-responses
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.
.properties
files:
1
cas.saml-sp.concur-solutions.sign-responses=true
1
cas:
saml-sp:
concur-solutions:
sign-responses: "true"
1
java -Dcas.saml-sp.concur-solutions.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONCUR_SOLUTIONS_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.concur-solutions.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.concur-solutions.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ConcurSolutions.
CAS Property: cas.saml-sp.concur-solutions.signature-location
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.
.properties
files:
1
cas.saml-sp.concur-solutions.signature-location=...
1
cas:
saml-sp:
concur-solutions:
signature-location: "..."
1
java -Dcas.saml-sp.concur-solutions.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONCUR_SOLUTIONS_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.concur-solutions.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.confluence.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Confluence.
CAS Property: cas.saml-sp.confluence.attributes
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.
.properties
files:
1
cas.saml-sp.confluence.attributes=...
1
cas:
saml-sp:
confluence:
attributes: "..."
1
java -Dcas.saml-sp.confluence.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONFLUENCE_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.confluence.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.confluence.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Confluence.
CAS Property: cas.saml-sp.confluence.description
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.
.properties
files:
1
cas.saml-sp.confluence.description= SAML SP Integration
1
cas:
saml-sp:
confluence:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.confluence.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONFLUENCE_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.confluence.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.confluence.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Confluence.
CAS Property: cas.saml-sp.confluence.entity-ids
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.
.properties
files:
1
cas.saml-sp.confluence.entity-ids=...
1
cas:
saml-sp:
confluence:
entity-ids: "..."
1
java -Dcas.saml-sp.confluence.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONFLUENCE_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.confluence.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.confluence.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Confluence.
CAS Property: cas.saml-sp.confluence.name
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.
.properties
files:
1
cas.saml-sp.confluence.name=...
1
cas:
saml-sp:
confluence:
name: "..."
1
java -Dcas.saml-sp.confluence.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONFLUENCE_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.confluence.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.confluence.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Confluence.
CAS Property: cas.saml-sp.confluence.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.confluence.name-id-attribute=...
1
cas:
saml-sp:
confluence:
name-id-attribute: "..."
1
java -Dcas.saml-sp.confluence.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONFLUENCE_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.confluence.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.confluence.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Confluence.
CAS Property: cas.saml-sp.confluence.name-id-format
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.
.properties
files:
1
cas.saml-sp.confluence.name-id-format=...
1
cas:
saml-sp:
confluence:
name-id-format: "..."
1
java -Dcas.saml-sp.confluence.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONFLUENCE_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.confluence.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.confluence.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Confluence.
CAS Property: cas.saml-sp.confluence.sign-assertions
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.
.properties
files:
1
cas.saml-sp.confluence.sign-assertions=...
1
cas:
saml-sp:
confluence:
sign-assertions: "..."
1
java -Dcas.saml-sp.confluence.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONFLUENCE_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.confluence.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.confluence.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Confluence.
CAS Property: cas.saml-sp.confluence.sign-responses
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.
.properties
files:
1
cas.saml-sp.confluence.sign-responses=true
1
cas:
saml-sp:
confluence:
sign-responses: "true"
1
java -Dcas.saml-sp.confluence.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONFLUENCE_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.confluence.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.confluence.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Confluence.
CAS Property: cas.saml-sp.confluence.signature-location
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.
.properties
files:
1
cas.saml-sp.confluence.signature-location=...
1
cas:
saml-sp:
confluence:
signature-location: "..."
1
java -Dcas.saml-sp.confluence.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CONFLUENCE_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.confluence.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cranium-cafe.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CraniumCafe.
CAS Property: cas.saml-sp.cranium-cafe.attributes
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.
.properties
files:
1
cas.saml-sp.cranium-cafe.attributes=...
1
cas:
saml-sp:
cranium-cafe:
attributes: "..."
1
java -Dcas.saml-sp.cranium-cafe.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRANIUM_CAFE_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cranium-cafe.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cranium-cafe.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CraniumCafe.
CAS Property: cas.saml-sp.cranium-cafe.description
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.
.properties
files:
1
cas.saml-sp.cranium-cafe.description= SAML SP Integration
1
cas:
saml-sp:
cranium-cafe:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.cranium-cafe.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRANIUM_CAFE_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cranium-cafe.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cranium-cafe.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CraniumCafe.
CAS Property: cas.saml-sp.cranium-cafe.entity-ids
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.
.properties
files:
1
cas.saml-sp.cranium-cafe.entity-ids=...
1
cas:
saml-sp:
cranium-cafe:
entity-ids: "..."
1
java -Dcas.saml-sp.cranium-cafe.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRANIUM_CAFE_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cranium-cafe.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cranium-cafe.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CraniumCafe.
CAS Property: cas.saml-sp.cranium-cafe.name
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.
.properties
files:
1
cas.saml-sp.cranium-cafe.name=...
1
cas:
saml-sp:
cranium-cafe:
name: "..."
1
java -Dcas.saml-sp.cranium-cafe.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRANIUM_CAFE_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cranium-cafe.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cranium-cafe.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CraniumCafe.
CAS Property: cas.saml-sp.cranium-cafe.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.cranium-cafe.name-id-attribute=...
1
cas:
saml-sp:
cranium-cafe:
name-id-attribute: "..."
1
java -Dcas.saml-sp.cranium-cafe.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRANIUM_CAFE_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cranium-cafe.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cranium-cafe.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CraniumCafe.
CAS Property: cas.saml-sp.cranium-cafe.name-id-format
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.
.properties
files:
1
cas.saml-sp.cranium-cafe.name-id-format=...
1
cas:
saml-sp:
cranium-cafe:
name-id-format: "..."
1
java -Dcas.saml-sp.cranium-cafe.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRANIUM_CAFE_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cranium-cafe.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cranium-cafe.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CraniumCafe.
CAS Property: cas.saml-sp.cranium-cafe.sign-assertions
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.
.properties
files:
1
cas.saml-sp.cranium-cafe.sign-assertions=...
1
cas:
saml-sp:
cranium-cafe:
sign-assertions: "..."
1
java -Dcas.saml-sp.cranium-cafe.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRANIUM_CAFE_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cranium-cafe.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cranium-cafe.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CraniumCafe.
CAS Property: cas.saml-sp.cranium-cafe.sign-responses
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.
.properties
files:
1
cas.saml-sp.cranium-cafe.sign-responses=true
1
cas:
saml-sp:
cranium-cafe:
sign-responses: "true"
1
java -Dcas.saml-sp.cranium-cafe.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRANIUM_CAFE_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cranium-cafe.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.cranium-cafe.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CraniumCafe.
CAS Property: cas.saml-sp.cranium-cafe.signature-location
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.
.properties
files:
1
cas.saml-sp.cranium-cafe.signature-location=...
1
cas:
saml-sp:
cranium-cafe:
signature-location: "..."
1
java -Dcas.saml-sp.cranium-cafe.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRANIUM_CAFE_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.cranium-cafe.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.crash-plan.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CrashPlan.
CAS Property: cas.saml-sp.crash-plan.attributes
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.
.properties
files:
1
cas.saml-sp.crash-plan.attributes=...
1
cas:
saml-sp:
crash-plan:
attributes: "..."
1
java -Dcas.saml-sp.crash-plan.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRASH_PLAN_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.crash-plan.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.crash-plan.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CrashPlan.
CAS Property: cas.saml-sp.crash-plan.description
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.
.properties
files:
1
cas.saml-sp.crash-plan.description= SAML SP Integration
1
cas:
saml-sp:
crash-plan:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.crash-plan.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRASH_PLAN_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.crash-plan.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.crash-plan.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CrashPlan.
CAS Property: cas.saml-sp.crash-plan.entity-ids
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.
.properties
files:
1
cas.saml-sp.crash-plan.entity-ids=...
1
cas:
saml-sp:
crash-plan:
entity-ids: "..."
1
java -Dcas.saml-sp.crash-plan.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRASH_PLAN_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.crash-plan.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.crash-plan.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CrashPlan.
CAS Property: cas.saml-sp.crash-plan.name
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.
.properties
files:
1
cas.saml-sp.crash-plan.name=...
1
cas:
saml-sp:
crash-plan:
name: "..."
1
java -Dcas.saml-sp.crash-plan.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRASH_PLAN_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.crash-plan.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.crash-plan.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CrashPlan.
CAS Property: cas.saml-sp.crash-plan.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.crash-plan.name-id-attribute=...
1
cas:
saml-sp:
crash-plan:
name-id-attribute: "..."
1
java -Dcas.saml-sp.crash-plan.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRASH_PLAN_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.crash-plan.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.crash-plan.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CrashPlan.
CAS Property: cas.saml-sp.crash-plan.name-id-format
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.
.properties
files:
1
cas.saml-sp.crash-plan.name-id-format=...
1
cas:
saml-sp:
crash-plan:
name-id-format: "..."
1
java -Dcas.saml-sp.crash-plan.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRASH_PLAN_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.crash-plan.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.crash-plan.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CrashPlan.
CAS Property: cas.saml-sp.crash-plan.sign-assertions
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.
.properties
files:
1
cas.saml-sp.crash-plan.sign-assertions=...
1
cas:
saml-sp:
crash-plan:
sign-assertions: "..."
1
java -Dcas.saml-sp.crash-plan.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRASH_PLAN_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.crash-plan.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.crash-plan.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CrashPlan.
CAS Property: cas.saml-sp.crash-plan.sign-responses
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.
.properties
files:
1
cas.saml-sp.crash-plan.sign-responses=true
1
cas:
saml-sp:
crash-plan:
sign-responses: "true"
1
java -Dcas.saml-sp.crash-plan.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRASH_PLAN_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.crash-plan.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.crash-plan.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.CrashPlan.
CAS Property: cas.saml-sp.crash-plan.signature-location
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.
.properties
files:
1
cas.saml-sp.crash-plan.signature-location=...
1
cas:
saml-sp:
crash-plan:
signature-location: "..."
1
java -Dcas.saml-sp.crash-plan.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_CRASH_PLAN_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.crash-plan.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.docu-sign.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.DocuSign.
CAS Property: cas.saml-sp.docu-sign.attributes
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.
.properties
files:
1
cas.saml-sp.docu-sign.attributes=...
1
cas:
saml-sp:
docu-sign:
attributes: "..."
1
java -Dcas.saml-sp.docu-sign.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DOCU_SIGN_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.docu-sign.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.docu-sign.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.DocuSign.
CAS Property: cas.saml-sp.docu-sign.description
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.
.properties
files:
1
cas.saml-sp.docu-sign.description= SAML SP Integration
1
cas:
saml-sp:
docu-sign:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.docu-sign.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DOCU_SIGN_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.docu-sign.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.docu-sign.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.DocuSign.
CAS Property: cas.saml-sp.docu-sign.entity-ids
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.
.properties
files:
1
cas.saml-sp.docu-sign.entity-ids=...
1
cas:
saml-sp:
docu-sign:
entity-ids: "..."
1
java -Dcas.saml-sp.docu-sign.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DOCU_SIGN_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.docu-sign.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.docu-sign.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.DocuSign.
CAS Property: cas.saml-sp.docu-sign.name
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.
.properties
files:
1
cas.saml-sp.docu-sign.name=...
1
cas:
saml-sp:
docu-sign:
name: "..."
1
java -Dcas.saml-sp.docu-sign.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DOCU_SIGN_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.docu-sign.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.docu-sign.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.DocuSign.
CAS Property: cas.saml-sp.docu-sign.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.docu-sign.name-id-attribute=...
1
cas:
saml-sp:
docu-sign:
name-id-attribute: "..."
1
java -Dcas.saml-sp.docu-sign.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DOCU_SIGN_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.docu-sign.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.docu-sign.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.DocuSign.
CAS Property: cas.saml-sp.docu-sign.name-id-format
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.
.properties
files:
1
cas.saml-sp.docu-sign.name-id-format=...
1
cas:
saml-sp:
docu-sign:
name-id-format: "..."
1
java -Dcas.saml-sp.docu-sign.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DOCU_SIGN_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.docu-sign.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.docu-sign.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.DocuSign.
CAS Property: cas.saml-sp.docu-sign.sign-assertions
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.
.properties
files:
1
cas.saml-sp.docu-sign.sign-assertions=...
1
cas:
saml-sp:
docu-sign:
sign-assertions: "..."
1
java -Dcas.saml-sp.docu-sign.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DOCU_SIGN_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.docu-sign.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.docu-sign.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.DocuSign.
CAS Property: cas.saml-sp.docu-sign.sign-responses
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.
.properties
files:
1
cas.saml-sp.docu-sign.sign-responses=true
1
cas:
saml-sp:
docu-sign:
sign-responses: "true"
1
java -Dcas.saml-sp.docu-sign.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DOCU_SIGN_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.docu-sign.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.docu-sign.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.DocuSign.
CAS Property: cas.saml-sp.docu-sign.signature-location
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.
.properties
files:
1
cas.saml-sp.docu-sign.signature-location=...
1
cas:
saml-sp:
docu-sign:
signature-location: "..."
1
java -Dcas.saml-sp.docu-sign.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DOCU_SIGN_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.docu-sign.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.dropbox.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Dropbox.
CAS Property: cas.saml-sp.dropbox.attributes
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.
.properties
files:
1
cas.saml-sp.dropbox.attributes=...
1
cas:
saml-sp:
dropbox:
attributes: "..."
1
java -Dcas.saml-sp.dropbox.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DROPBOX_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.dropbox.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.dropbox.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Dropbox.
CAS Property: cas.saml-sp.dropbox.description
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.
.properties
files:
1
cas.saml-sp.dropbox.description= SAML SP Integration
1
cas:
saml-sp:
dropbox:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.dropbox.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DROPBOX_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.dropbox.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.dropbox.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Dropbox.
CAS Property: cas.saml-sp.dropbox.entity-ids
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.
.properties
files:
1
cas.saml-sp.dropbox.entity-ids=...
1
cas:
saml-sp:
dropbox:
entity-ids: "..."
1
java -Dcas.saml-sp.dropbox.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DROPBOX_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.dropbox.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.dropbox.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Dropbox.
CAS Property: cas.saml-sp.dropbox.name
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.
.properties
files:
1
cas.saml-sp.dropbox.name=...
1
cas:
saml-sp:
dropbox:
name: "..."
1
java -Dcas.saml-sp.dropbox.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DROPBOX_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.dropbox.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.dropbox.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Dropbox.
CAS Property: cas.saml-sp.dropbox.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.dropbox.name-id-attribute=...
1
cas:
saml-sp:
dropbox:
name-id-attribute: "..."
1
java -Dcas.saml-sp.dropbox.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DROPBOX_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.dropbox.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.dropbox.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Dropbox.
CAS Property: cas.saml-sp.dropbox.name-id-format
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.
.properties
files:
1
cas.saml-sp.dropbox.name-id-format=...
1
cas:
saml-sp:
dropbox:
name-id-format: "..."
1
java -Dcas.saml-sp.dropbox.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DROPBOX_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.dropbox.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.dropbox.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Dropbox.
CAS Property: cas.saml-sp.dropbox.sign-assertions
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.
.properties
files:
1
cas.saml-sp.dropbox.sign-assertions=...
1
cas:
saml-sp:
dropbox:
sign-assertions: "..."
1
java -Dcas.saml-sp.dropbox.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DROPBOX_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.dropbox.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.dropbox.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Dropbox.
CAS Property: cas.saml-sp.dropbox.sign-responses
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.
.properties
files:
1
cas.saml-sp.dropbox.sign-responses=true
1
cas:
saml-sp:
dropbox:
sign-responses: "true"
1
java -Dcas.saml-sp.dropbox.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DROPBOX_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.dropbox.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.dropbox.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Dropbox.
CAS Property: cas.saml-sp.dropbox.signature-location
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.
.properties
files:
1
cas.saml-sp.dropbox.signature-location=...
1
cas:
saml-sp:
dropbox:
signature-location: "..."
1
java -Dcas.saml-sp.dropbox.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_DROPBOX_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.dropbox.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.easy-iep.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EasyIep.
CAS Property: cas.saml-sp.easy-iep.attributes
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.
.properties
files:
1
cas.saml-sp.easy-iep.attributes=...
1
cas:
saml-sp:
easy-iep:
attributes: "..."
1
java -Dcas.saml-sp.easy-iep.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EASY_IEP_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.easy-iep.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.easy-iep.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EasyIep.
CAS Property: cas.saml-sp.easy-iep.description
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.
.properties
files:
1
cas.saml-sp.easy-iep.description= SAML SP Integration
1
cas:
saml-sp:
easy-iep:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.easy-iep.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EASY_IEP_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.easy-iep.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.easy-iep.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EasyIep.
CAS Property: cas.saml-sp.easy-iep.entity-ids
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.
.properties
files:
1
cas.saml-sp.easy-iep.entity-ids=...
1
cas:
saml-sp:
easy-iep:
entity-ids: "..."
1
java -Dcas.saml-sp.easy-iep.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EASY_IEP_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.easy-iep.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.easy-iep.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EasyIep.
CAS Property: cas.saml-sp.easy-iep.name
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.
.properties
files:
1
cas.saml-sp.easy-iep.name=...
1
cas:
saml-sp:
easy-iep:
name: "..."
1
java -Dcas.saml-sp.easy-iep.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EASY_IEP_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.easy-iep.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.easy-iep.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EasyIep.
CAS Property: cas.saml-sp.easy-iep.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.easy-iep.name-id-attribute=...
1
cas:
saml-sp:
easy-iep:
name-id-attribute: "..."
1
java -Dcas.saml-sp.easy-iep.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EASY_IEP_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.easy-iep.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.easy-iep.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EasyIep.
CAS Property: cas.saml-sp.easy-iep.name-id-format
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.
.properties
files:
1
cas.saml-sp.easy-iep.name-id-format=...
1
cas:
saml-sp:
easy-iep:
name-id-format: "..."
1
java -Dcas.saml-sp.easy-iep.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EASY_IEP_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.easy-iep.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.easy-iep.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EasyIep.
CAS Property: cas.saml-sp.easy-iep.sign-assertions
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.
.properties
files:
1
cas.saml-sp.easy-iep.sign-assertions=...
1
cas:
saml-sp:
easy-iep:
sign-assertions: "..."
1
java -Dcas.saml-sp.easy-iep.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EASY_IEP_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.easy-iep.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.easy-iep.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EasyIep.
CAS Property: cas.saml-sp.easy-iep.sign-responses
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.
.properties
files:
1
cas.saml-sp.easy-iep.sign-responses=true
1
cas:
saml-sp:
easy-iep:
sign-responses: "true"
1
java -Dcas.saml-sp.easy-iep.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EASY_IEP_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.easy-iep.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.easy-iep.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EasyIep.
CAS Property: cas.saml-sp.easy-iep.signature-location
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.
.properties
files:
1
cas.saml-sp.easy-iep.signature-location=...
1
cas:
saml-sp:
easy-iep:
signature-location: "..."
1
java -Dcas.saml-sp.easy-iep.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EASY_IEP_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.easy-iep.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.egnyte.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Egnyte.
CAS Property: cas.saml-sp.egnyte.attributes
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.
.properties
files:
1
cas.saml-sp.egnyte.attributes=...
1
cas:
saml-sp:
egnyte:
attributes: "..."
1
java -Dcas.saml-sp.egnyte.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EGNYTE_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.egnyte.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.egnyte.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Egnyte.
CAS Property: cas.saml-sp.egnyte.description
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.
.properties
files:
1
cas.saml-sp.egnyte.description= SAML SP Integration
1
cas:
saml-sp:
egnyte:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.egnyte.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EGNYTE_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.egnyte.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.egnyte.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Egnyte.
CAS Property: cas.saml-sp.egnyte.entity-ids
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.
.properties
files:
1
cas.saml-sp.egnyte.entity-ids=...
1
cas:
saml-sp:
egnyte:
entity-ids: "..."
1
java -Dcas.saml-sp.egnyte.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EGNYTE_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.egnyte.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.egnyte.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Egnyte.
CAS Property: cas.saml-sp.egnyte.name
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.
.properties
files:
1
cas.saml-sp.egnyte.name=...
1
cas:
saml-sp:
egnyte:
name: "..."
1
java -Dcas.saml-sp.egnyte.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EGNYTE_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.egnyte.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.egnyte.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Egnyte.
CAS Property: cas.saml-sp.egnyte.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.egnyte.name-id-attribute=...
1
cas:
saml-sp:
egnyte:
name-id-attribute: "..."
1
java -Dcas.saml-sp.egnyte.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EGNYTE_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.egnyte.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.egnyte.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Egnyte.
CAS Property: cas.saml-sp.egnyte.name-id-format
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.
.properties
files:
1
cas.saml-sp.egnyte.name-id-format=...
1
cas:
saml-sp:
egnyte:
name-id-format: "..."
1
java -Dcas.saml-sp.egnyte.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EGNYTE_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.egnyte.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.egnyte.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Egnyte.
CAS Property: cas.saml-sp.egnyte.sign-assertions
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.
.properties
files:
1
cas.saml-sp.egnyte.sign-assertions=...
1
cas:
saml-sp:
egnyte:
sign-assertions: "..."
1
java -Dcas.saml-sp.egnyte.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EGNYTE_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.egnyte.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.egnyte.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Egnyte.
CAS Property: cas.saml-sp.egnyte.sign-responses
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.
.properties
files:
1
cas.saml-sp.egnyte.sign-responses=true
1
cas:
saml-sp:
egnyte:
sign-responses: "true"
1
java -Dcas.saml-sp.egnyte.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EGNYTE_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.egnyte.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.egnyte.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Egnyte.
CAS Property: cas.saml-sp.egnyte.signature-location
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.
.properties
files:
1
cas.saml-sp.egnyte.signature-location=...
1
cas:
saml-sp:
egnyte:
signature-location: "..."
1
java -Dcas.saml-sp.egnyte.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EGNYTE_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.egnyte.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.emma.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Emma.
CAS Property: cas.saml-sp.emma.attributes
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.
.properties
files:
1
cas.saml-sp.emma.attributes=...
1
cas:
saml-sp:
emma:
attributes: "..."
1
java -Dcas.saml-sp.emma.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EMMA_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.emma.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.emma.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Emma.
CAS Property: cas.saml-sp.emma.description
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.
.properties
files:
1
cas.saml-sp.emma.description= SAML SP Integration
1
cas:
saml-sp:
emma:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.emma.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EMMA_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.emma.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.emma.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Emma.
CAS Property: cas.saml-sp.emma.entity-ids
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.
.properties
files:
1
cas.saml-sp.emma.entity-ids=...
1
cas:
saml-sp:
emma:
entity-ids: "..."
1
java -Dcas.saml-sp.emma.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EMMA_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.emma.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.emma.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Emma.
CAS Property: cas.saml-sp.emma.name
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.
.properties
files:
1
cas.saml-sp.emma.name=...
1
cas:
saml-sp:
emma:
name: "..."
1
java -Dcas.saml-sp.emma.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EMMA_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.emma.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.emma.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Emma.
CAS Property: cas.saml-sp.emma.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.emma.name-id-attribute=...
1
cas:
saml-sp:
emma:
name-id-attribute: "..."
1
java -Dcas.saml-sp.emma.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EMMA_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.emma.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.emma.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Emma.
CAS Property: cas.saml-sp.emma.name-id-format
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.
.properties
files:
1
cas.saml-sp.emma.name-id-format=...
1
cas:
saml-sp:
emma:
name-id-format: "..."
1
java -Dcas.saml-sp.emma.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EMMA_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.emma.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.emma.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Emma.
CAS Property: cas.saml-sp.emma.sign-assertions
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.
.properties
files:
1
cas.saml-sp.emma.sign-assertions=...
1
cas:
saml-sp:
emma:
sign-assertions: "..."
1
java -Dcas.saml-sp.emma.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EMMA_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.emma.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.emma.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Emma.
CAS Property: cas.saml-sp.emma.sign-responses
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.
.properties
files:
1
cas.saml-sp.emma.sign-responses=true
1
cas:
saml-sp:
emma:
sign-responses: "true"
1
java -Dcas.saml-sp.emma.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EMMA_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.emma.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.emma.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Emma.
CAS Property: cas.saml-sp.emma.signature-location
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.
.properties
files:
1
cas.saml-sp.emma.signature-location=...
1
cas:
saml-sp:
emma:
signature-location: "..."
1
java -Dcas.saml-sp.emma.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EMMA_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.emma.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.ever-bridge.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EverBridge.
CAS Property: cas.saml-sp.ever-bridge.attributes
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.
.properties
files:
1
cas.saml-sp.ever-bridge.attributes=...
1
cas:
saml-sp:
ever-bridge:
attributes: "..."
1
java -Dcas.saml-sp.ever-bridge.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVER_BRIDGE_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.ever-bridge.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.ever-bridge.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EverBridge.
CAS Property: cas.saml-sp.ever-bridge.description
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.
.properties
files:
1
cas.saml-sp.ever-bridge.description= SAML SP Integration
1
cas:
saml-sp:
ever-bridge:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.ever-bridge.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVER_BRIDGE_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.ever-bridge.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.ever-bridge.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EverBridge.
CAS Property: cas.saml-sp.ever-bridge.entity-ids
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.
.properties
files:
1
cas.saml-sp.ever-bridge.entity-ids=...
1
cas:
saml-sp:
ever-bridge:
entity-ids: "..."
1
java -Dcas.saml-sp.ever-bridge.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVER_BRIDGE_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.ever-bridge.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.ever-bridge.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EverBridge.
CAS Property: cas.saml-sp.ever-bridge.name
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.
.properties
files:
1
cas.saml-sp.ever-bridge.name=...
1
cas:
saml-sp:
ever-bridge:
name: "..."
1
java -Dcas.saml-sp.ever-bridge.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVER_BRIDGE_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.ever-bridge.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.ever-bridge.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EverBridge.
CAS Property: cas.saml-sp.ever-bridge.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.ever-bridge.name-id-attribute=...
1
cas:
saml-sp:
ever-bridge:
name-id-attribute: "..."
1
java -Dcas.saml-sp.ever-bridge.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVER_BRIDGE_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.ever-bridge.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.ever-bridge.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EverBridge.
CAS Property: cas.saml-sp.ever-bridge.name-id-format
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.
.properties
files:
1
cas.saml-sp.ever-bridge.name-id-format=...
1
cas:
saml-sp:
ever-bridge:
name-id-format: "..."
1
java -Dcas.saml-sp.ever-bridge.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVER_BRIDGE_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.ever-bridge.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.ever-bridge.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EverBridge.
CAS Property: cas.saml-sp.ever-bridge.sign-assertions
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.
.properties
files:
1
cas.saml-sp.ever-bridge.sign-assertions=...
1
cas:
saml-sp:
ever-bridge:
sign-assertions: "..."
1
java -Dcas.saml-sp.ever-bridge.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVER_BRIDGE_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.ever-bridge.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.ever-bridge.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EverBridge.
CAS Property: cas.saml-sp.ever-bridge.sign-responses
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.
.properties
files:
1
cas.saml-sp.ever-bridge.sign-responses=true
1
cas:
saml-sp:
ever-bridge:
sign-responses: "true"
1
java -Dcas.saml-sp.ever-bridge.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVER_BRIDGE_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.ever-bridge.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.ever-bridge.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.EverBridge.
CAS Property: cas.saml-sp.ever-bridge.signature-location
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.
.properties
files:
1
cas.saml-sp.ever-bridge.signature-location=...
1
cas:
saml-sp:
ever-bridge:
signature-location: "..."
1
java -Dcas.saml-sp.ever-bridge.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVER_BRIDGE_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.ever-bridge.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.evernote.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Evernote.
CAS Property: cas.saml-sp.evernote.attributes
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.
.properties
files:
1
cas.saml-sp.evernote.attributes=...
1
cas:
saml-sp:
evernote:
attributes: "..."
1
java -Dcas.saml-sp.evernote.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVERNOTE_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.evernote.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.evernote.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Evernote.
CAS Property: cas.saml-sp.evernote.description
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.
.properties
files:
1
cas.saml-sp.evernote.description= SAML SP Integration
1
cas:
saml-sp:
evernote:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.evernote.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVERNOTE_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.evernote.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.evernote.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Evernote.
CAS Property: cas.saml-sp.evernote.entity-ids
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.
.properties
files:
1
cas.saml-sp.evernote.entity-ids=...
1
cas:
saml-sp:
evernote:
entity-ids: "..."
1
java -Dcas.saml-sp.evernote.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVERNOTE_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.evernote.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.evernote.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Evernote.
CAS Property: cas.saml-sp.evernote.name
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.
.properties
files:
1
cas.saml-sp.evernote.name=...
1
cas:
saml-sp:
evernote:
name: "..."
1
java -Dcas.saml-sp.evernote.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVERNOTE_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.evernote.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.evernote.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Evernote.
CAS Property: cas.saml-sp.evernote.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.evernote.name-id-attribute=...
1
cas:
saml-sp:
evernote:
name-id-attribute: "..."
1
java -Dcas.saml-sp.evernote.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVERNOTE_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.evernote.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.evernote.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Evernote.
CAS Property: cas.saml-sp.evernote.name-id-format
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.
.properties
files:
1
cas.saml-sp.evernote.name-id-format=...
1
cas:
saml-sp:
evernote:
name-id-format: "..."
1
java -Dcas.saml-sp.evernote.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVERNOTE_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.evernote.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.evernote.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Evernote.
CAS Property: cas.saml-sp.evernote.sign-assertions
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.
.properties
files:
1
cas.saml-sp.evernote.sign-assertions=...
1
cas:
saml-sp:
evernote:
sign-assertions: "..."
1
java -Dcas.saml-sp.evernote.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVERNOTE_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.evernote.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.evernote.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Evernote.
CAS Property: cas.saml-sp.evernote.sign-responses
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.
.properties
files:
1
cas.saml-sp.evernote.sign-responses=true
1
cas:
saml-sp:
evernote:
sign-responses: "true"
1
java -Dcas.saml-sp.evernote.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVERNOTE_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.evernote.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.evernote.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Evernote.
CAS Property: cas.saml-sp.evernote.signature-location
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.
.properties
files:
1
cas.saml-sp.evernote.signature-location=...
1
cas:
saml-sp:
evernote:
signature-location: "..."
1
java -Dcas.saml-sp.evernote.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_EVERNOTE_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.evernote.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.famis.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Famis.
CAS Property: cas.saml-sp.famis.attributes
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.
.properties
files:
1
cas.saml-sp.famis.attributes=...
1
cas:
saml-sp:
famis:
attributes: "..."
1
java -Dcas.saml-sp.famis.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_FAMIS_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.famis.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.famis.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Famis.
CAS Property: cas.saml-sp.famis.description
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.
.properties
files:
1
cas.saml-sp.famis.description= SAML SP Integration
1
cas:
saml-sp:
famis:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.famis.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_FAMIS_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.famis.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.famis.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Famis.
CAS Property: cas.saml-sp.famis.entity-ids
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.
.properties
files:
1
cas.saml-sp.famis.entity-ids=...
1
cas:
saml-sp:
famis:
entity-ids: "..."
1
java -Dcas.saml-sp.famis.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_FAMIS_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.famis.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.famis.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Famis.
CAS Property: cas.saml-sp.famis.name
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.
.properties
files:
1
cas.saml-sp.famis.name=...
1
cas:
saml-sp:
famis:
name: "..."
1
java -Dcas.saml-sp.famis.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_FAMIS_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.famis.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.famis.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Famis.
CAS Property: cas.saml-sp.famis.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.famis.name-id-attribute=...
1
cas:
saml-sp:
famis:
name-id-attribute: "..."
1
java -Dcas.saml-sp.famis.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_FAMIS_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.famis.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.famis.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Famis.
CAS Property: cas.saml-sp.famis.name-id-format
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.
.properties
files:
1
cas.saml-sp.famis.name-id-format=...
1
cas:
saml-sp:
famis:
name-id-format: "..."
1
java -Dcas.saml-sp.famis.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_FAMIS_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.famis.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.famis.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Famis.
CAS Property: cas.saml-sp.famis.sign-assertions
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.
.properties
files:
1
cas.saml-sp.famis.sign-assertions=...
1
cas:
saml-sp:
famis:
sign-assertions: "..."
1
java -Dcas.saml-sp.famis.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_FAMIS_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.famis.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.famis.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Famis.
CAS Property: cas.saml-sp.famis.sign-responses
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.
.properties
files:
1
cas.saml-sp.famis.sign-responses=true
1
cas:
saml-sp:
famis:
sign-responses: "true"
1
java -Dcas.saml-sp.famis.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_FAMIS_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.famis.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.famis.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Famis.
CAS Property: cas.saml-sp.famis.signature-location
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.
.properties
files:
1
cas.saml-sp.famis.signature-location=...
1
cas:
saml-sp:
famis:
signature-location: "..."
1
java -Dcas.saml-sp.famis.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_FAMIS_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.famis.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gartner.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gartner.
CAS Property: cas.saml-sp.gartner.attributes
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.
.properties
files:
1
cas.saml-sp.gartner.attributes=...
1
cas:
saml-sp:
gartner:
attributes: "..."
1
java -Dcas.saml-sp.gartner.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GARTNER_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gartner.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gartner.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gartner.
CAS Property: cas.saml-sp.gartner.description
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.
.properties
files:
1
cas.saml-sp.gartner.description= SAML SP Integration
1
cas:
saml-sp:
gartner:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.gartner.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GARTNER_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gartner.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gartner.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gartner.
CAS Property: cas.saml-sp.gartner.entity-ids
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.
.properties
files:
1
cas.saml-sp.gartner.entity-ids=...
1
cas:
saml-sp:
gartner:
entity-ids: "..."
1
java -Dcas.saml-sp.gartner.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GARTNER_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gartner.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gartner.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gartner.
CAS Property: cas.saml-sp.gartner.name
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.
.properties
files:
1
cas.saml-sp.gartner.name=...
1
cas:
saml-sp:
gartner:
name: "..."
1
java -Dcas.saml-sp.gartner.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GARTNER_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gartner.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gartner.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gartner.
CAS Property: cas.saml-sp.gartner.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.gartner.name-id-attribute=...
1
cas:
saml-sp:
gartner:
name-id-attribute: "..."
1
java -Dcas.saml-sp.gartner.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GARTNER_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gartner.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gartner.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gartner.
CAS Property: cas.saml-sp.gartner.name-id-format
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.
.properties
files:
1
cas.saml-sp.gartner.name-id-format=...
1
cas:
saml-sp:
gartner:
name-id-format: "..."
1
java -Dcas.saml-sp.gartner.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GARTNER_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gartner.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gartner.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gartner.
CAS Property: cas.saml-sp.gartner.sign-assertions
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.
.properties
files:
1
cas.saml-sp.gartner.sign-assertions=...
1
cas:
saml-sp:
gartner:
sign-assertions: "..."
1
java -Dcas.saml-sp.gartner.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GARTNER_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gartner.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gartner.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gartner.
CAS Property: cas.saml-sp.gartner.sign-responses
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.
.properties
files:
1
cas.saml-sp.gartner.sign-responses=true
1
cas:
saml-sp:
gartner:
sign-responses: "true"
1
java -Dcas.saml-sp.gartner.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GARTNER_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gartner.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gartner.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gartner.
CAS Property: cas.saml-sp.gartner.signature-location
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.
.properties
files:
1
cas.saml-sp.gartner.signature-location=...
1
cas:
saml-sp:
gartner:
signature-location: "..."
1
java -Dcas.saml-sp.gartner.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GARTNER_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gartner.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gitlab.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gitlab.
CAS Property: cas.saml-sp.gitlab.attributes
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.
.properties
files:
1
cas.saml-sp.gitlab.attributes=...
1
cas:
saml-sp:
gitlab:
attributes: "..."
1
java -Dcas.saml-sp.gitlab.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GITLAB_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gitlab.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gitlab.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gitlab.
CAS Property: cas.saml-sp.gitlab.description
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.
.properties
files:
1
cas.saml-sp.gitlab.description= SAML SP Integration
1
cas:
saml-sp:
gitlab:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.gitlab.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GITLAB_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gitlab.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gitlab.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gitlab.
CAS Property: cas.saml-sp.gitlab.entity-ids
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.
.properties
files:
1
cas.saml-sp.gitlab.entity-ids=...
1
cas:
saml-sp:
gitlab:
entity-ids: "..."
1
java -Dcas.saml-sp.gitlab.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GITLAB_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gitlab.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gitlab.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gitlab.
CAS Property: cas.saml-sp.gitlab.name
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.
.properties
files:
1
cas.saml-sp.gitlab.name=...
1
cas:
saml-sp:
gitlab:
name: "..."
1
java -Dcas.saml-sp.gitlab.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GITLAB_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gitlab.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gitlab.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gitlab.
CAS Property: cas.saml-sp.gitlab.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.gitlab.name-id-attribute=...
1
cas:
saml-sp:
gitlab:
name-id-attribute: "..."
1
java -Dcas.saml-sp.gitlab.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GITLAB_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gitlab.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gitlab.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gitlab.
CAS Property: cas.saml-sp.gitlab.name-id-format
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.
.properties
files:
1
cas.saml-sp.gitlab.name-id-format=...
1
cas:
saml-sp:
gitlab:
name-id-format: "..."
1
java -Dcas.saml-sp.gitlab.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GITLAB_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gitlab.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gitlab.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gitlab.
CAS Property: cas.saml-sp.gitlab.sign-assertions
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.
.properties
files:
1
cas.saml-sp.gitlab.sign-assertions=...
1
cas:
saml-sp:
gitlab:
sign-assertions: "..."
1
java -Dcas.saml-sp.gitlab.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GITLAB_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gitlab.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gitlab.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gitlab.
CAS Property: cas.saml-sp.gitlab.sign-responses
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.
.properties
files:
1
cas.saml-sp.gitlab.sign-responses=true
1
cas:
saml-sp:
gitlab:
sign-responses: "true"
1
java -Dcas.saml-sp.gitlab.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GITLAB_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gitlab.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.gitlab.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Gitlab.
CAS Property: cas.saml-sp.gitlab.signature-location
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.
.properties
files:
1
cas.saml-sp.gitlab.signature-location=...
1
cas:
saml-sp:
gitlab:
signature-location: "..."
1
java -Dcas.saml-sp.gitlab.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GITLAB_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.gitlab.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.give-campus.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.GiveCampus.
CAS Property: cas.saml-sp.give-campus.attributes
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.
.properties
files:
1
cas.saml-sp.give-campus.attributes=...
1
cas:
saml-sp:
give-campus:
attributes: "..."
1
java -Dcas.saml-sp.give-campus.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GIVE_CAMPUS_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.give-campus.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.give-campus.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.GiveCampus.
CAS Property: cas.saml-sp.give-campus.description
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.
.properties
files:
1
cas.saml-sp.give-campus.description= SAML SP Integration
1
cas:
saml-sp:
give-campus:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.give-campus.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GIVE_CAMPUS_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.give-campus.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.give-campus.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.GiveCampus.
CAS Property: cas.saml-sp.give-campus.entity-ids
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.
.properties
files:
1
cas.saml-sp.give-campus.entity-ids=...
1
cas:
saml-sp:
give-campus:
entity-ids: "..."
1
java -Dcas.saml-sp.give-campus.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GIVE_CAMPUS_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.give-campus.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.give-campus.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.GiveCampus.
CAS Property: cas.saml-sp.give-campus.name
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.
.properties
files:
1
cas.saml-sp.give-campus.name=...
1
cas:
saml-sp:
give-campus:
name: "..."
1
java -Dcas.saml-sp.give-campus.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GIVE_CAMPUS_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.give-campus.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.give-campus.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.GiveCampus.
CAS Property: cas.saml-sp.give-campus.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.give-campus.name-id-attribute=...
1
cas:
saml-sp:
give-campus:
name-id-attribute: "..."
1
java -Dcas.saml-sp.give-campus.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GIVE_CAMPUS_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.give-campus.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.give-campus.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.GiveCampus.
CAS Property: cas.saml-sp.give-campus.name-id-format
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.
.properties
files:
1
cas.saml-sp.give-campus.name-id-format=...
1
cas:
saml-sp:
give-campus:
name-id-format: "..."
1
java -Dcas.saml-sp.give-campus.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GIVE_CAMPUS_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.give-campus.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.give-campus.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.GiveCampus.
CAS Property: cas.saml-sp.give-campus.sign-assertions
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.
.properties
files:
1
cas.saml-sp.give-campus.sign-assertions=...
1
cas:
saml-sp:
give-campus:
sign-assertions: "..."
1
java -Dcas.saml-sp.give-campus.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GIVE_CAMPUS_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.give-campus.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.give-campus.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.GiveCampus.
CAS Property: cas.saml-sp.give-campus.sign-responses
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.
.properties
files:
1
cas.saml-sp.give-campus.sign-responses=true
1
cas:
saml-sp:
give-campus:
sign-responses: "true"
1
java -Dcas.saml-sp.give-campus.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GIVE_CAMPUS_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.give-campus.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.give-campus.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.GiveCampus.
CAS Property: cas.saml-sp.give-campus.signature-location
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.
.properties
files:
1
cas.saml-sp.give-campus.signature-location=...
1
cas:
saml-sp:
give-campus:
signature-location: "..."
1
java -Dcas.saml-sp.give-campus.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_GIVE_CAMPUS_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.give-campus.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.in-common.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InCommon.
CAS Property: cas.saml-sp.in-common.attributes
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.
.properties
files:
1
cas.saml-sp.in-common.attributes=...
1
cas:
saml-sp:
in-common:
attributes: "..."
1
java -Dcas.saml-sp.in-common.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_IN_COMMON_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.in-common.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.in-common.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InCommon.
CAS Property: cas.saml-sp.in-common.description
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.
.properties
files:
1
cas.saml-sp.in-common.description= SAML SP Integration
1
cas:
saml-sp:
in-common:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.in-common.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_IN_COMMON_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.in-common.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.in-common.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InCommon.
CAS Property: cas.saml-sp.in-common.entity-ids
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.
.properties
files:
1
cas.saml-sp.in-common.entity-ids=...
1
cas:
saml-sp:
in-common:
entity-ids: "..."
1
java -Dcas.saml-sp.in-common.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_IN_COMMON_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.in-common.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.in-common.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InCommon.
CAS Property: cas.saml-sp.in-common.name
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.
.properties
files:
1
cas.saml-sp.in-common.name=...
1
cas:
saml-sp:
in-common:
name: "..."
1
java -Dcas.saml-sp.in-common.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_IN_COMMON_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.in-common.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.in-common.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InCommon.
CAS Property: cas.saml-sp.in-common.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.in-common.name-id-attribute=...
1
cas:
saml-sp:
in-common:
name-id-attribute: "..."
1
java -Dcas.saml-sp.in-common.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_IN_COMMON_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.in-common.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.in-common.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InCommon.
CAS Property: cas.saml-sp.in-common.name-id-format
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.
.properties
files:
1
cas.saml-sp.in-common.name-id-format=...
1
cas:
saml-sp:
in-common:
name-id-format: "..."
1
java -Dcas.saml-sp.in-common.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_IN_COMMON_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.in-common.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.in-common.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InCommon.
CAS Property: cas.saml-sp.in-common.sign-assertions
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.
.properties
files:
1
cas.saml-sp.in-common.sign-assertions=...
1
cas:
saml-sp:
in-common:
sign-assertions: "..."
1
java -Dcas.saml-sp.in-common.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_IN_COMMON_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.in-common.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.in-common.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InCommon.
CAS Property: cas.saml-sp.in-common.sign-responses
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.
.properties
files:
1
cas.saml-sp.in-common.sign-responses=true
1
cas:
saml-sp:
in-common:
sign-responses: "true"
1
java -Dcas.saml-sp.in-common.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_IN_COMMON_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.in-common.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.in-common.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InCommon.
CAS Property: cas.saml-sp.in-common.signature-location
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.
.properties
files:
1
cas.saml-sp.in-common.signature-location=...
1
cas:
saml-sp:
in-common:
signature-location: "..."
1
java -Dcas.saml-sp.in-common.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_IN_COMMON_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.in-common.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.infinite-campus.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InfiniteCampus.
CAS Property: cas.saml-sp.infinite-campus.attributes
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.
.properties
files:
1
cas.saml-sp.infinite-campus.attributes=...
1
cas:
saml-sp:
infinite-campus:
attributes: "..."
1
java -Dcas.saml-sp.infinite-campus.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_INFINITE_CAMPUS_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.infinite-campus.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.infinite-campus.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InfiniteCampus.
CAS Property: cas.saml-sp.infinite-campus.description
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.
.properties
files:
1
cas.saml-sp.infinite-campus.description= SAML SP Integration
1
cas:
saml-sp:
infinite-campus:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.infinite-campus.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_INFINITE_CAMPUS_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.infinite-campus.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.infinite-campus.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InfiniteCampus.
CAS Property: cas.saml-sp.infinite-campus.entity-ids
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.
.properties
files:
1
cas.saml-sp.infinite-campus.entity-ids=...
1
cas:
saml-sp:
infinite-campus:
entity-ids: "..."
1
java -Dcas.saml-sp.infinite-campus.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_INFINITE_CAMPUS_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.infinite-campus.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.infinite-campus.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InfiniteCampus.
CAS Property: cas.saml-sp.infinite-campus.name
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.
.properties
files:
1
cas.saml-sp.infinite-campus.name=...
1
cas:
saml-sp:
infinite-campus:
name: "..."
1
java -Dcas.saml-sp.infinite-campus.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_INFINITE_CAMPUS_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.infinite-campus.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.infinite-campus.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InfiniteCampus.
CAS Property: cas.saml-sp.infinite-campus.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.infinite-campus.name-id-attribute=...
1
cas:
saml-sp:
infinite-campus:
name-id-attribute: "..."
1
java -Dcas.saml-sp.infinite-campus.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_INFINITE_CAMPUS_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.infinite-campus.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.infinite-campus.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InfiniteCampus.
CAS Property: cas.saml-sp.infinite-campus.name-id-format
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.
.properties
files:
1
cas.saml-sp.infinite-campus.name-id-format=...
1
cas:
saml-sp:
infinite-campus:
name-id-format: "..."
1
java -Dcas.saml-sp.infinite-campus.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_INFINITE_CAMPUS_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.infinite-campus.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.infinite-campus.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InfiniteCampus.
CAS Property: cas.saml-sp.infinite-campus.sign-assertions
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.
.properties
files:
1
cas.saml-sp.infinite-campus.sign-assertions=...
1
cas:
saml-sp:
infinite-campus:
sign-assertions: "..."
1
java -Dcas.saml-sp.infinite-campus.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_INFINITE_CAMPUS_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.infinite-campus.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.infinite-campus.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InfiniteCampus.
CAS Property: cas.saml-sp.infinite-campus.sign-responses
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.
.properties
files:
1
cas.saml-sp.infinite-campus.sign-responses=true
1
cas:
saml-sp:
infinite-campus:
sign-responses: "true"
1
java -Dcas.saml-sp.infinite-campus.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_INFINITE_CAMPUS_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.infinite-campus.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.infinite-campus.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.InfiniteCampus.
CAS Property: cas.saml-sp.infinite-campus.signature-location
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.
.properties
files:
1
cas.saml-sp.infinite-campus.signature-location=...
1
cas:
saml-sp:
infinite-campus:
signature-location: "..."
1
java -Dcas.saml-sp.infinite-campus.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_INFINITE_CAMPUS_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.infinite-campus.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.jira.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Jira.
CAS Property: cas.saml-sp.jira.attributes
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.
.properties
files:
1
cas.saml-sp.jira.attributes=...
1
cas:
saml-sp:
jira:
attributes: "..."
1
java -Dcas.saml-sp.jira.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_JIRA_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.jira.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.jira.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Jira.
CAS Property: cas.saml-sp.jira.description
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.
.properties
files:
1
cas.saml-sp.jira.description= SAML SP Integration
1
cas:
saml-sp:
jira:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.jira.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_JIRA_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.jira.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.jira.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Jira.
CAS Property: cas.saml-sp.jira.entity-ids
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.
.properties
files:
1
cas.saml-sp.jira.entity-ids=...
1
cas:
saml-sp:
jira:
entity-ids: "..."
1
java -Dcas.saml-sp.jira.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_JIRA_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.jira.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.jira.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Jira.
CAS Property: cas.saml-sp.jira.name
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.
.properties
files:
1
cas.saml-sp.jira.name=...
1
cas:
saml-sp:
jira:
name: "..."
1
java -Dcas.saml-sp.jira.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_JIRA_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.jira.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.jira.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Jira.
CAS Property: cas.saml-sp.jira.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.jira.name-id-attribute=...
1
cas:
saml-sp:
jira:
name-id-attribute: "..."
1
java -Dcas.saml-sp.jira.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_JIRA_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.jira.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.jira.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Jira.
CAS Property: cas.saml-sp.jira.name-id-format
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.
.properties
files:
1
cas.saml-sp.jira.name-id-format=...
1
cas:
saml-sp:
jira:
name-id-format: "..."
1
java -Dcas.saml-sp.jira.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_JIRA_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.jira.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.jira.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Jira.
CAS Property: cas.saml-sp.jira.sign-assertions
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.
.properties
files:
1
cas.saml-sp.jira.sign-assertions=...
1
cas:
saml-sp:
jira:
sign-assertions: "..."
1
java -Dcas.saml-sp.jira.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_JIRA_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.jira.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.jira.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Jira.
CAS Property: cas.saml-sp.jira.sign-responses
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.
.properties
files:
1
cas.saml-sp.jira.sign-responses=true
1
cas:
saml-sp:
jira:
sign-responses: "true"
1
java -Dcas.saml-sp.jira.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_JIRA_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.jira.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.jira.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Jira.
CAS Property: cas.saml-sp.jira.signature-location
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.
.properties
files:
1
cas.saml-sp.jira.signature-location=...
1
cas:
saml-sp:
jira:
signature-location: "..."
1
java -Dcas.saml-sp.jira.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_JIRA_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.jira.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.neo-gov.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NeoGov.
CAS Property: cas.saml-sp.neo-gov.attributes
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.
.properties
files:
1
cas.saml-sp.neo-gov.attributes=...
1
cas:
saml-sp:
neo-gov:
attributes: "..."
1
java -Dcas.saml-sp.neo-gov.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEO_GOV_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.neo-gov.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.neo-gov.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NeoGov.
CAS Property: cas.saml-sp.neo-gov.description
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.
.properties
files:
1
cas.saml-sp.neo-gov.description= SAML SP Integration
1
cas:
saml-sp:
neo-gov:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.neo-gov.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEO_GOV_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.neo-gov.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.neo-gov.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NeoGov.
CAS Property: cas.saml-sp.neo-gov.entity-ids
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.
.properties
files:
1
cas.saml-sp.neo-gov.entity-ids=...
1
cas:
saml-sp:
neo-gov:
entity-ids: "..."
1
java -Dcas.saml-sp.neo-gov.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEO_GOV_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.neo-gov.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.neo-gov.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NeoGov.
CAS Property: cas.saml-sp.neo-gov.name
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.
.properties
files:
1
cas.saml-sp.neo-gov.name=...
1
cas:
saml-sp:
neo-gov:
name: "..."
1
java -Dcas.saml-sp.neo-gov.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEO_GOV_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.neo-gov.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.neo-gov.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NeoGov.
CAS Property: cas.saml-sp.neo-gov.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.neo-gov.name-id-attribute=...
1
cas:
saml-sp:
neo-gov:
name-id-attribute: "..."
1
java -Dcas.saml-sp.neo-gov.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEO_GOV_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.neo-gov.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.neo-gov.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NeoGov.
CAS Property: cas.saml-sp.neo-gov.name-id-format
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.
.properties
files:
1
cas.saml-sp.neo-gov.name-id-format=...
1
cas:
saml-sp:
neo-gov:
name-id-format: "..."
1
java -Dcas.saml-sp.neo-gov.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEO_GOV_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.neo-gov.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.neo-gov.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NeoGov.
CAS Property: cas.saml-sp.neo-gov.sign-assertions
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.
.properties
files:
1
cas.saml-sp.neo-gov.sign-assertions=...
1
cas:
saml-sp:
neo-gov:
sign-assertions: "..."
1
java -Dcas.saml-sp.neo-gov.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEO_GOV_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.neo-gov.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.neo-gov.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NeoGov.
CAS Property: cas.saml-sp.neo-gov.sign-responses
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.
.properties
files:
1
cas.saml-sp.neo-gov.sign-responses=true
1
cas:
saml-sp:
neo-gov:
sign-responses: "true"
1
java -Dcas.saml-sp.neo-gov.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEO_GOV_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.neo-gov.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.neo-gov.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NeoGov.
CAS Property: cas.saml-sp.neo-gov.signature-location
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.
.properties
files:
1
cas.saml-sp.neo-gov.signature-location=...
1
cas:
saml-sp:
neo-gov:
signature-location: "..."
1
java -Dcas.saml-sp.neo-gov.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEO_GOV_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.neo-gov.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.net-partner.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NetPartner.
CAS Property: cas.saml-sp.net-partner.attributes
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.
.properties
files:
1
cas.saml-sp.net-partner.attributes=...
1
cas:
saml-sp:
net-partner:
attributes: "..."
1
java -Dcas.saml-sp.net-partner.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NET_PARTNER_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.net-partner.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.net-partner.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NetPartner.
CAS Property: cas.saml-sp.net-partner.description
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.
.properties
files:
1
cas.saml-sp.net-partner.description= SAML SP Integration
1
cas:
saml-sp:
net-partner:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.net-partner.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NET_PARTNER_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.net-partner.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.net-partner.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NetPartner.
CAS Property: cas.saml-sp.net-partner.entity-ids
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.
.properties
files:
1
cas.saml-sp.net-partner.entity-ids=...
1
cas:
saml-sp:
net-partner:
entity-ids: "..."
1
java -Dcas.saml-sp.net-partner.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NET_PARTNER_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.net-partner.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.net-partner.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NetPartner.
CAS Property: cas.saml-sp.net-partner.name
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.
.properties
files:
1
cas.saml-sp.net-partner.name=...
1
cas:
saml-sp:
net-partner:
name: "..."
1
java -Dcas.saml-sp.net-partner.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NET_PARTNER_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.net-partner.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.net-partner.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NetPartner.
CAS Property: cas.saml-sp.net-partner.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.net-partner.name-id-attribute=...
1
cas:
saml-sp:
net-partner:
name-id-attribute: "..."
1
java -Dcas.saml-sp.net-partner.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NET_PARTNER_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.net-partner.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.net-partner.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NetPartner.
CAS Property: cas.saml-sp.net-partner.name-id-format
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.
.properties
files:
1
cas.saml-sp.net-partner.name-id-format=...
1
cas:
saml-sp:
net-partner:
name-id-format: "..."
1
java -Dcas.saml-sp.net-partner.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NET_PARTNER_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.net-partner.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.net-partner.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NetPartner.
CAS Property: cas.saml-sp.net-partner.sign-assertions
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.
.properties
files:
1
cas.saml-sp.net-partner.sign-assertions=...
1
cas:
saml-sp:
net-partner:
sign-assertions: "..."
1
java -Dcas.saml-sp.net-partner.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NET_PARTNER_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.net-partner.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.net-partner.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NetPartner.
CAS Property: cas.saml-sp.net-partner.sign-responses
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.
.properties
files:
1
cas.saml-sp.net-partner.sign-responses=true
1
cas:
saml-sp:
net-partner:
sign-responses: "true"
1
java -Dcas.saml-sp.net-partner.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NET_PARTNER_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.net-partner.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.net-partner.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NetPartner.
CAS Property: cas.saml-sp.net-partner.signature-location
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.
.properties
files:
1
cas.saml-sp.net-partner.signature-location=...
1
cas:
saml-sp:
net-partner:
signature-location: "..."
1
java -Dcas.saml-sp.net-partner.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NET_PARTNER_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.net-partner.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.new-relic.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NewRelic.
CAS Property: cas.saml-sp.new-relic.attributes
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.
.properties
files:
1
cas.saml-sp.new-relic.attributes=...
1
cas:
saml-sp:
new-relic:
attributes: "..."
1
java -Dcas.saml-sp.new-relic.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEW_RELIC_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.new-relic.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.new-relic.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NewRelic.
CAS Property: cas.saml-sp.new-relic.description
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.
.properties
files:
1
cas.saml-sp.new-relic.description= SAML SP Integration
1
cas:
saml-sp:
new-relic:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.new-relic.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEW_RELIC_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.new-relic.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.new-relic.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NewRelic.
CAS Property: cas.saml-sp.new-relic.entity-ids
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.
.properties
files:
1
cas.saml-sp.new-relic.entity-ids=...
1
cas:
saml-sp:
new-relic:
entity-ids: "..."
1
java -Dcas.saml-sp.new-relic.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEW_RELIC_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.new-relic.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.new-relic.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NewRelic.
CAS Property: cas.saml-sp.new-relic.name
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.
.properties
files:
1
cas.saml-sp.new-relic.name=...
1
cas:
saml-sp:
new-relic:
name: "..."
1
java -Dcas.saml-sp.new-relic.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEW_RELIC_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.new-relic.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.new-relic.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NewRelic.
CAS Property: cas.saml-sp.new-relic.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.new-relic.name-id-attribute=...
1
cas:
saml-sp:
new-relic:
name-id-attribute: "..."
1
java -Dcas.saml-sp.new-relic.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEW_RELIC_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.new-relic.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.new-relic.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NewRelic.
CAS Property: cas.saml-sp.new-relic.name-id-format
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.
.properties
files:
1
cas.saml-sp.new-relic.name-id-format=...
1
cas:
saml-sp:
new-relic:
name-id-format: "..."
1
java -Dcas.saml-sp.new-relic.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEW_RELIC_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.new-relic.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.new-relic.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NewRelic.
CAS Property: cas.saml-sp.new-relic.sign-assertions
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.
.properties
files:
1
cas.saml-sp.new-relic.sign-assertions=...
1
cas:
saml-sp:
new-relic:
sign-assertions: "..."
1
java -Dcas.saml-sp.new-relic.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEW_RELIC_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.new-relic.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.new-relic.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NewRelic.
CAS Property: cas.saml-sp.new-relic.sign-responses
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.
.properties
files:
1
cas.saml-sp.new-relic.sign-responses=true
1
cas:
saml-sp:
new-relic:
sign-responses: "true"
1
java -Dcas.saml-sp.new-relic.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEW_RELIC_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.new-relic.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.new-relic.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.NewRelic.
CAS Property: cas.saml-sp.new-relic.signature-location
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.
.properties
files:
1
cas.saml-sp.new-relic.signature-location=...
1
cas:
saml-sp:
new-relic:
signature-location: "..."
1
java -Dcas.saml-sp.new-relic.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_NEW_RELIC_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.new-relic.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.office365.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Office365.
CAS Property: cas.saml-sp.office365.attributes
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.
.properties
files:
1
cas.saml-sp.office365.attributes=...
1
cas:
saml-sp:
office365:
attributes: "..."
1
java -Dcas.saml-sp.office365.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OFFICE365_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.office365.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.office365.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Office365.
CAS Property: cas.saml-sp.office365.description
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.
.properties
files:
1
cas.saml-sp.office365.description= SAML SP Integration
1
cas:
saml-sp:
office365:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.office365.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OFFICE365_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.office365.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.office365.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Office365.
CAS Property: cas.saml-sp.office365.entity-ids
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.
.properties
files:
1
cas.saml-sp.office365.entity-ids=...
1
cas:
saml-sp:
office365:
entity-ids: "..."
1
java -Dcas.saml-sp.office365.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OFFICE365_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.office365.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.office365.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Office365.
CAS Property: cas.saml-sp.office365.name
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.
.properties
files:
1
cas.saml-sp.office365.name=...
1
cas:
saml-sp:
office365:
name: "..."
1
java -Dcas.saml-sp.office365.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OFFICE365_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.office365.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.office365.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Office365.
CAS Property: cas.saml-sp.office365.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.office365.name-id-attribute=...
1
cas:
saml-sp:
office365:
name-id-attribute: "..."
1
java -Dcas.saml-sp.office365.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OFFICE365_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.office365.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.office365.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Office365.
CAS Property: cas.saml-sp.office365.name-id-format
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.
.properties
files:
1
cas.saml-sp.office365.name-id-format=...
1
cas:
saml-sp:
office365:
name-id-format: "..."
1
java -Dcas.saml-sp.office365.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OFFICE365_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.office365.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.office365.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Office365.
CAS Property: cas.saml-sp.office365.sign-assertions
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.
.properties
files:
1
cas.saml-sp.office365.sign-assertions=...
1
cas:
saml-sp:
office365:
sign-assertions: "..."
1
java -Dcas.saml-sp.office365.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OFFICE365_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.office365.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.office365.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Office365.
CAS Property: cas.saml-sp.office365.sign-responses
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.
.properties
files:
1
cas.saml-sp.office365.sign-responses=true
1
cas:
saml-sp:
office365:
sign-responses: "true"
1
java -Dcas.saml-sp.office365.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OFFICE365_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.office365.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.office365.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Office365.
CAS Property: cas.saml-sp.office365.signature-location
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.
.properties
files:
1
cas.saml-sp.office365.signature-location=...
1
cas:
saml-sp:
office365:
signature-location: "..."
1
java -Dcas.saml-sp.office365.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OFFICE365_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.office365.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.open-athens.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.OpenAthens.
CAS Property: cas.saml-sp.open-athens.attributes
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.
.properties
files:
1
cas.saml-sp.open-athens.attributes=...
1
cas:
saml-sp:
open-athens:
attributes: "..."
1
java -Dcas.saml-sp.open-athens.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OPEN_ATHENS_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.open-athens.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.open-athens.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.OpenAthens.
CAS Property: cas.saml-sp.open-athens.description
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.
.properties
files:
1
cas.saml-sp.open-athens.description= SAML SP Integration
1
cas:
saml-sp:
open-athens:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.open-athens.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OPEN_ATHENS_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.open-athens.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.open-athens.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.OpenAthens.
CAS Property: cas.saml-sp.open-athens.entity-ids
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.
.properties
files:
1
cas.saml-sp.open-athens.entity-ids=...
1
cas:
saml-sp:
open-athens:
entity-ids: "..."
1
java -Dcas.saml-sp.open-athens.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OPEN_ATHENS_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.open-athens.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.open-athens.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.OpenAthens.
CAS Property: cas.saml-sp.open-athens.name
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.
.properties
files:
1
cas.saml-sp.open-athens.name=...
1
cas:
saml-sp:
open-athens:
name: "..."
1
java -Dcas.saml-sp.open-athens.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OPEN_ATHENS_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.open-athens.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.open-athens.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.OpenAthens.
CAS Property: cas.saml-sp.open-athens.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.open-athens.name-id-attribute=...
1
cas:
saml-sp:
open-athens:
name-id-attribute: "..."
1
java -Dcas.saml-sp.open-athens.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OPEN_ATHENS_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.open-athens.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.open-athens.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.OpenAthens.
CAS Property: cas.saml-sp.open-athens.name-id-format
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.
.properties
files:
1
cas.saml-sp.open-athens.name-id-format=...
1
cas:
saml-sp:
open-athens:
name-id-format: "..."
1
java -Dcas.saml-sp.open-athens.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OPEN_ATHENS_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.open-athens.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.open-athens.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.OpenAthens.
CAS Property: cas.saml-sp.open-athens.sign-assertions
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.
.properties
files:
1
cas.saml-sp.open-athens.sign-assertions=...
1
cas:
saml-sp:
open-athens:
sign-assertions: "..."
1
java -Dcas.saml-sp.open-athens.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OPEN_ATHENS_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.open-athens.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.open-athens.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.OpenAthens.
CAS Property: cas.saml-sp.open-athens.sign-responses
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.
.properties
files:
1
cas.saml-sp.open-athens.sign-responses=true
1
cas:
saml-sp:
open-athens:
sign-responses: "true"
1
java -Dcas.saml-sp.open-athens.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OPEN_ATHENS_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.open-athens.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.open-athens.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.OpenAthens.
CAS Property: cas.saml-sp.open-athens.signature-location
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.
.properties
files:
1
cas.saml-sp.open-athens.signature-location=...
1
cas:
saml-sp:
open-athens:
signature-location: "..."
1
java -Dcas.saml-sp.open-athens.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_OPEN_ATHENS_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.open-athens.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.pager-duty.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PagerDuty.
CAS Property: cas.saml-sp.pager-duty.attributes
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.
.properties
files:
1
cas.saml-sp.pager-duty.attributes=...
1
cas:
saml-sp:
pager-duty:
attributes: "..."
1
java -Dcas.saml-sp.pager-duty.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_PAGER_DUTY_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.pager-duty.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.pager-duty.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PagerDuty.
CAS Property: cas.saml-sp.pager-duty.description
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.
.properties
files:
1
cas.saml-sp.pager-duty.description= SAML SP Integration
1
cas:
saml-sp:
pager-duty:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.pager-duty.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_PAGER_DUTY_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.pager-duty.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.pager-duty.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PagerDuty.
CAS Property: cas.saml-sp.pager-duty.entity-ids
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.
.properties
files:
1
cas.saml-sp.pager-duty.entity-ids=...
1
cas:
saml-sp:
pager-duty:
entity-ids: "..."
1
java -Dcas.saml-sp.pager-duty.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_PAGER_DUTY_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.pager-duty.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.pager-duty.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PagerDuty.
CAS Property: cas.saml-sp.pager-duty.name
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.
.properties
files:
1
cas.saml-sp.pager-duty.name=...
1
cas:
saml-sp:
pager-duty:
name: "..."
1
java -Dcas.saml-sp.pager-duty.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_PAGER_DUTY_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.pager-duty.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.pager-duty.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PagerDuty.
CAS Property: cas.saml-sp.pager-duty.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.pager-duty.name-id-attribute=...
1
cas:
saml-sp:
pager-duty:
name-id-attribute: "..."
1
java -Dcas.saml-sp.pager-duty.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_PAGER_DUTY_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.pager-duty.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.pager-duty.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PagerDuty.
CAS Property: cas.saml-sp.pager-duty.name-id-format
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.
.properties
files:
1
cas.saml-sp.pager-duty.name-id-format=...
1
cas:
saml-sp:
pager-duty:
name-id-format: "..."
1
java -Dcas.saml-sp.pager-duty.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_PAGER_DUTY_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.pager-duty.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.pager-duty.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PagerDuty.
CAS Property: cas.saml-sp.pager-duty.sign-assertions
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.
.properties
files:
1
cas.saml-sp.pager-duty.sign-assertions=...
1
cas:
saml-sp:
pager-duty:
sign-assertions: "..."
1
java -Dcas.saml-sp.pager-duty.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_PAGER_DUTY_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.pager-duty.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.pager-duty.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PagerDuty.
CAS Property: cas.saml-sp.pager-duty.sign-responses
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.
.properties
files:
1
cas.saml-sp.pager-duty.sign-responses=true
1
cas:
saml-sp:
pager-duty:
sign-responses: "true"
1
java -Dcas.saml-sp.pager-duty.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_PAGER_DUTY_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.pager-duty.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.pager-duty.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PagerDuty.
CAS Property: cas.saml-sp.pager-duty.signature-location
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.
.properties
files:
1
cas.saml-sp.pager-duty.signature-location=...
1
cas:
saml-sp:
pager-duty:
signature-location: "..."
1
java -Dcas.saml-sp.pager-duty.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_PAGER_DUTY_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.pager-duty.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.poll-everywhere.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PollEverywhere.
CAS Property: cas.saml-sp.poll-everywhere.attributes
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.
.properties
files:
1
cas.saml-sp.poll-everywhere.attributes=...
1
cas:
saml-sp:
poll-everywhere:
attributes: "..."
1
java -Dcas.saml-sp.poll-everywhere.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_POLL_EVERYWHERE_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.poll-everywhere.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.poll-everywhere.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PollEverywhere.
CAS Property: cas.saml-sp.poll-everywhere.description
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.
.properties
files:
1
cas.saml-sp.poll-everywhere.description= SAML SP Integration
1
cas:
saml-sp:
poll-everywhere:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.poll-everywhere.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_POLL_EVERYWHERE_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.poll-everywhere.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.poll-everywhere.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PollEverywhere.
CAS Property: cas.saml-sp.poll-everywhere.entity-ids
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.
.properties
files:
1
cas.saml-sp.poll-everywhere.entity-ids=...
1
cas:
saml-sp:
poll-everywhere:
entity-ids: "..."
1
java -Dcas.saml-sp.poll-everywhere.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_POLL_EVERYWHERE_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.poll-everywhere.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.poll-everywhere.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PollEverywhere.
CAS Property: cas.saml-sp.poll-everywhere.name
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.
.properties
files:
1
cas.saml-sp.poll-everywhere.name=...
1
cas:
saml-sp:
poll-everywhere:
name: "..."
1
java -Dcas.saml-sp.poll-everywhere.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_POLL_EVERYWHERE_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.poll-everywhere.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.poll-everywhere.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PollEverywhere.
CAS Property: cas.saml-sp.poll-everywhere.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.poll-everywhere.name-id-attribute=...
1
cas:
saml-sp:
poll-everywhere:
name-id-attribute: "..."
1
java -Dcas.saml-sp.poll-everywhere.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_POLL_EVERYWHERE_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.poll-everywhere.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.poll-everywhere.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PollEverywhere.
CAS Property: cas.saml-sp.poll-everywhere.name-id-format
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.
.properties
files:
1
cas.saml-sp.poll-everywhere.name-id-format=...
1
cas:
saml-sp:
poll-everywhere:
name-id-format: "..."
1
java -Dcas.saml-sp.poll-everywhere.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_POLL_EVERYWHERE_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.poll-everywhere.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.poll-everywhere.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PollEverywhere.
CAS Property: cas.saml-sp.poll-everywhere.sign-assertions
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.
.properties
files:
1
cas.saml-sp.poll-everywhere.sign-assertions=...
1
cas:
saml-sp:
poll-everywhere:
sign-assertions: "..."
1
java -Dcas.saml-sp.poll-everywhere.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_POLL_EVERYWHERE_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.poll-everywhere.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.poll-everywhere.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PollEverywhere.
CAS Property: cas.saml-sp.poll-everywhere.sign-responses
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.
.properties
files:
1
cas.saml-sp.poll-everywhere.sign-responses=true
1
cas:
saml-sp:
poll-everywhere:
sign-responses: "true"
1
java -Dcas.saml-sp.poll-everywhere.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_POLL_EVERYWHERE_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.poll-everywhere.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.poll-everywhere.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.PollEverywhere.
CAS Property: cas.saml-sp.poll-everywhere.signature-location
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.
.properties
files:
1
cas.saml-sp.poll-everywhere.signature-location=...
1
cas:
saml-sp:
poll-everywhere:
signature-location: "..."
1
java -Dcas.saml-sp.poll-everywhere.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_POLL_EVERYWHERE_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.poll-everywhere.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.qualtrics.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Qualtrics.
CAS Property: cas.saml-sp.qualtrics.attributes
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.
.properties
files:
1
cas.saml-sp.qualtrics.attributes=...
1
cas:
saml-sp:
qualtrics:
attributes: "..."
1
java -Dcas.saml-sp.qualtrics.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_QUALTRICS_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.qualtrics.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.qualtrics.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Qualtrics.
CAS Property: cas.saml-sp.qualtrics.description
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.
.properties
files:
1
cas.saml-sp.qualtrics.description= SAML SP Integration
1
cas:
saml-sp:
qualtrics:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.qualtrics.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_QUALTRICS_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.qualtrics.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.qualtrics.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Qualtrics.
CAS Property: cas.saml-sp.qualtrics.entity-ids
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.
.properties
files:
1
cas.saml-sp.qualtrics.entity-ids=...
1
cas:
saml-sp:
qualtrics:
entity-ids: "..."
1
java -Dcas.saml-sp.qualtrics.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_QUALTRICS_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.qualtrics.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.qualtrics.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Qualtrics.
CAS Property: cas.saml-sp.qualtrics.name
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.
.properties
files:
1
cas.saml-sp.qualtrics.name=...
1
cas:
saml-sp:
qualtrics:
name: "..."
1
java -Dcas.saml-sp.qualtrics.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_QUALTRICS_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.qualtrics.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.qualtrics.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Qualtrics.
CAS Property: cas.saml-sp.qualtrics.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.qualtrics.name-id-attribute=...
1
cas:
saml-sp:
qualtrics:
name-id-attribute: "..."
1
java -Dcas.saml-sp.qualtrics.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_QUALTRICS_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.qualtrics.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.qualtrics.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Qualtrics.
CAS Property: cas.saml-sp.qualtrics.name-id-format
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.
.properties
files:
1
cas.saml-sp.qualtrics.name-id-format=...
1
cas:
saml-sp:
qualtrics:
name-id-format: "..."
1
java -Dcas.saml-sp.qualtrics.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_QUALTRICS_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.qualtrics.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.qualtrics.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Qualtrics.
CAS Property: cas.saml-sp.qualtrics.sign-assertions
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.
.properties
files:
1
cas.saml-sp.qualtrics.sign-assertions=...
1
cas:
saml-sp:
qualtrics:
sign-assertions: "..."
1
java -Dcas.saml-sp.qualtrics.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_QUALTRICS_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.qualtrics.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.qualtrics.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Qualtrics.
CAS Property: cas.saml-sp.qualtrics.sign-responses
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.
.properties
files:
1
cas.saml-sp.qualtrics.sign-responses=true
1
cas:
saml-sp:
qualtrics:
sign-responses: "true"
1
java -Dcas.saml-sp.qualtrics.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_QUALTRICS_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.qualtrics.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.qualtrics.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Qualtrics.
CAS Property: cas.saml-sp.qualtrics.signature-location
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.
.properties
files:
1
cas.saml-sp.qualtrics.signature-location=...
1
cas:
saml-sp:
qualtrics:
signature-location: "..."
1
java -Dcas.saml-sp.qualtrics.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_QUALTRICS_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.qualtrics.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.rocket-chat.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.RocketChat.
CAS Property: cas.saml-sp.rocket-chat.attributes
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.
.properties
files:
1
cas.saml-sp.rocket-chat.attributes=...
1
cas:
saml-sp:
rocket-chat:
attributes: "..."
1
java -Dcas.saml-sp.rocket-chat.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ROCKET_CHAT_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.rocket-chat.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.rocket-chat.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.RocketChat.
CAS Property: cas.saml-sp.rocket-chat.description
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.
.properties
files:
1
cas.saml-sp.rocket-chat.description= SAML SP Integration
1
cas:
saml-sp:
rocket-chat:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.rocket-chat.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ROCKET_CHAT_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.rocket-chat.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.rocket-chat.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.RocketChat.
CAS Property: cas.saml-sp.rocket-chat.entity-ids
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.
.properties
files:
1
cas.saml-sp.rocket-chat.entity-ids=...
1
cas:
saml-sp:
rocket-chat:
entity-ids: "..."
1
java -Dcas.saml-sp.rocket-chat.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ROCKET_CHAT_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.rocket-chat.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.rocket-chat.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.RocketChat.
CAS Property: cas.saml-sp.rocket-chat.name
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.
.properties
files:
1
cas.saml-sp.rocket-chat.name=...
1
cas:
saml-sp:
rocket-chat:
name: "..."
1
java -Dcas.saml-sp.rocket-chat.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ROCKET_CHAT_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.rocket-chat.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.rocket-chat.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.RocketChat.
CAS Property: cas.saml-sp.rocket-chat.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.rocket-chat.name-id-attribute=...
1
cas:
saml-sp:
rocket-chat:
name-id-attribute: "..."
1
java -Dcas.saml-sp.rocket-chat.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ROCKET_CHAT_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.rocket-chat.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.rocket-chat.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.RocketChat.
CAS Property: cas.saml-sp.rocket-chat.name-id-format
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.
.properties
files:
1
cas.saml-sp.rocket-chat.name-id-format=...
1
cas:
saml-sp:
rocket-chat:
name-id-format: "..."
1
java -Dcas.saml-sp.rocket-chat.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ROCKET_CHAT_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.rocket-chat.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.rocket-chat.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.RocketChat.
CAS Property: cas.saml-sp.rocket-chat.sign-assertions
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.
.properties
files:
1
cas.saml-sp.rocket-chat.sign-assertions=...
1
cas:
saml-sp:
rocket-chat:
sign-assertions: "..."
1
java -Dcas.saml-sp.rocket-chat.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ROCKET_CHAT_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.rocket-chat.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.rocket-chat.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.RocketChat.
CAS Property: cas.saml-sp.rocket-chat.sign-responses
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.
.properties
files:
1
cas.saml-sp.rocket-chat.sign-responses=true
1
cas:
saml-sp:
rocket-chat:
sign-responses: "true"
1
java -Dcas.saml-sp.rocket-chat.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ROCKET_CHAT_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.rocket-chat.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.rocket-chat.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.RocketChat.
CAS Property: cas.saml-sp.rocket-chat.signature-location
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.
.properties
files:
1
cas.saml-sp.rocket-chat.signature-location=...
1
cas:
saml-sp:
rocket-chat:
signature-location: "..."
1
java -Dcas.saml-sp.rocket-chat.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ROCKET_CHAT_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.rocket-chat.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sa-manage.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SAManage.
CAS Property: cas.saml-sp.sa-manage.attributes
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.
.properties
files:
1
cas.saml-sp.sa-manage.attributes=...
1
cas:
saml-sp:
sa-manage:
attributes: "..."
1
java -Dcas.saml-sp.sa-manage.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SA_MANAGE_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sa-manage.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sa-manage.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SAManage.
CAS Property: cas.saml-sp.sa-manage.description
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.
.properties
files:
1
cas.saml-sp.sa-manage.description= SAML SP Integration
1
cas:
saml-sp:
sa-manage:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.sa-manage.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SA_MANAGE_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sa-manage.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sa-manage.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SAManage.
CAS Property: cas.saml-sp.sa-manage.entity-ids
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.
.properties
files:
1
cas.saml-sp.sa-manage.entity-ids=...
1
cas:
saml-sp:
sa-manage:
entity-ids: "..."
1
java -Dcas.saml-sp.sa-manage.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SA_MANAGE_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sa-manage.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sa-manage.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SAManage.
CAS Property: cas.saml-sp.sa-manage.name
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.
.properties
files:
1
cas.saml-sp.sa-manage.name=...
1
cas:
saml-sp:
sa-manage:
name: "..."
1
java -Dcas.saml-sp.sa-manage.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SA_MANAGE_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sa-manage.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sa-manage.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SAManage.
CAS Property: cas.saml-sp.sa-manage.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.sa-manage.name-id-attribute=...
1
cas:
saml-sp:
sa-manage:
name-id-attribute: "..."
1
java -Dcas.saml-sp.sa-manage.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SA_MANAGE_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sa-manage.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sa-manage.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SAManage.
CAS Property: cas.saml-sp.sa-manage.name-id-format
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.
.properties
files:
1
cas.saml-sp.sa-manage.name-id-format=...
1
cas:
saml-sp:
sa-manage:
name-id-format: "..."
1
java -Dcas.saml-sp.sa-manage.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SA_MANAGE_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sa-manage.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sa-manage.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SAManage.
CAS Property: cas.saml-sp.sa-manage.sign-assertions
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.
.properties
files:
1
cas.saml-sp.sa-manage.sign-assertions=...
1
cas:
saml-sp:
sa-manage:
sign-assertions: "..."
1
java -Dcas.saml-sp.sa-manage.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SA_MANAGE_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sa-manage.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sa-manage.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SAManage.
CAS Property: cas.saml-sp.sa-manage.sign-responses
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.
.properties
files:
1
cas.saml-sp.sa-manage.sign-responses=true
1
cas:
saml-sp:
sa-manage:
sign-responses: "true"
1
java -Dcas.saml-sp.sa-manage.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SA_MANAGE_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sa-manage.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sa-manage.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SAManage.
CAS Property: cas.saml-sp.sa-manage.signature-location
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.
.properties
files:
1
cas.saml-sp.sa-manage.signature-location=...
1
cas:
saml-sp:
sa-manage:
signature-location: "..."
1
java -Dcas.saml-sp.sa-manage.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SA_MANAGE_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sa-manage.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.safari-online.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SafariOnline.
CAS Property: cas.saml-sp.safari-online.attributes
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.
.properties
files:
1
cas.saml-sp.safari-online.attributes=...
1
cas:
saml-sp:
safari-online:
attributes: "..."
1
java -Dcas.saml-sp.safari-online.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SAFARI_ONLINE_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.safari-online.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.safari-online.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SafariOnline.
CAS Property: cas.saml-sp.safari-online.description
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.
.properties
files:
1
cas.saml-sp.safari-online.description= SAML SP Integration
1
cas:
saml-sp:
safari-online:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.safari-online.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SAFARI_ONLINE_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.safari-online.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.safari-online.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SafariOnline.
CAS Property: cas.saml-sp.safari-online.entity-ids
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.
.properties
files:
1
cas.saml-sp.safari-online.entity-ids=...
1
cas:
saml-sp:
safari-online:
entity-ids: "..."
1
java -Dcas.saml-sp.safari-online.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SAFARI_ONLINE_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.safari-online.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.safari-online.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SafariOnline.
CAS Property: cas.saml-sp.safari-online.name
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.
.properties
files:
1
cas.saml-sp.safari-online.name=...
1
cas:
saml-sp:
safari-online:
name: "..."
1
java -Dcas.saml-sp.safari-online.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SAFARI_ONLINE_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.safari-online.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.safari-online.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SafariOnline.
CAS Property: cas.saml-sp.safari-online.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.safari-online.name-id-attribute=...
1
cas:
saml-sp:
safari-online:
name-id-attribute: "..."
1
java -Dcas.saml-sp.safari-online.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SAFARI_ONLINE_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.safari-online.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.safari-online.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SafariOnline.
CAS Property: cas.saml-sp.safari-online.name-id-format
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.
.properties
files:
1
cas.saml-sp.safari-online.name-id-format=...
1
cas:
saml-sp:
safari-online:
name-id-format: "..."
1
java -Dcas.saml-sp.safari-online.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SAFARI_ONLINE_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.safari-online.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.safari-online.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SafariOnline.
CAS Property: cas.saml-sp.safari-online.sign-assertions
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.
.properties
files:
1
cas.saml-sp.safari-online.sign-assertions=...
1
cas:
saml-sp:
safari-online:
sign-assertions: "..."
1
java -Dcas.saml-sp.safari-online.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SAFARI_ONLINE_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.safari-online.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.safari-online.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SafariOnline.
CAS Property: cas.saml-sp.safari-online.sign-responses
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.
.properties
files:
1
cas.saml-sp.safari-online.sign-responses=true
1
cas:
saml-sp:
safari-online:
sign-responses: "true"
1
java -Dcas.saml-sp.safari-online.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SAFARI_ONLINE_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.safari-online.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.safari-online.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SafariOnline.
CAS Property: cas.saml-sp.safari-online.signature-location
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.
.properties
files:
1
cas.saml-sp.safari-online.signature-location=...
1
cas:
saml-sp:
safari-online:
signature-location: "..."
1
java -Dcas.saml-sp.safari-online.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SAFARI_ONLINE_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.safari-online.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.salesforce.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Salesforce.
CAS Property: cas.saml-sp.salesforce.attributes
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.
.properties
files:
1
cas.saml-sp.salesforce.attributes=...
1
cas:
saml-sp:
salesforce:
attributes: "..."
1
java -Dcas.saml-sp.salesforce.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SALESFORCE_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.salesforce.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.salesforce.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Salesforce.
CAS Property: cas.saml-sp.salesforce.description
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.
.properties
files:
1
cas.saml-sp.salesforce.description= SAML SP Integration
1
cas:
saml-sp:
salesforce:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.salesforce.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SALESFORCE_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.salesforce.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.salesforce.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Salesforce.
CAS Property: cas.saml-sp.salesforce.entity-ids
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.
.properties
files:
1
cas.saml-sp.salesforce.entity-ids=...
1
cas:
saml-sp:
salesforce:
entity-ids: "..."
1
java -Dcas.saml-sp.salesforce.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SALESFORCE_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.salesforce.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.salesforce.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Salesforce.
CAS Property: cas.saml-sp.salesforce.name
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.
.properties
files:
1
cas.saml-sp.salesforce.name=...
1
cas:
saml-sp:
salesforce:
name: "..."
1
java -Dcas.saml-sp.salesforce.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SALESFORCE_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.salesforce.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.salesforce.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Salesforce.
CAS Property: cas.saml-sp.salesforce.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.salesforce.name-id-attribute=...
1
cas:
saml-sp:
salesforce:
name-id-attribute: "..."
1
java -Dcas.saml-sp.salesforce.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SALESFORCE_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.salesforce.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.salesforce.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Salesforce.
CAS Property: cas.saml-sp.salesforce.name-id-format
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.
.properties
files:
1
cas.saml-sp.salesforce.name-id-format=...
1
cas:
saml-sp:
salesforce:
name-id-format: "..."
1
java -Dcas.saml-sp.salesforce.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SALESFORCE_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.salesforce.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.salesforce.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Salesforce.
CAS Property: cas.saml-sp.salesforce.sign-assertions
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.
.properties
files:
1
cas.saml-sp.salesforce.sign-assertions=...
1
cas:
saml-sp:
salesforce:
sign-assertions: "..."
1
java -Dcas.saml-sp.salesforce.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SALESFORCE_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.salesforce.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.salesforce.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Salesforce.
CAS Property: cas.saml-sp.salesforce.sign-responses
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.
.properties
files:
1
cas.saml-sp.salesforce.sign-responses=true
1
cas:
saml-sp:
salesforce:
sign-responses: "true"
1
java -Dcas.saml-sp.salesforce.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SALESFORCE_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.salesforce.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.salesforce.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Salesforce.
CAS Property: cas.saml-sp.salesforce.signature-location
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.
.properties
files:
1
cas.saml-sp.salesforce.signature-location=...
1
cas:
saml-sp:
salesforce:
signature-location: "..."
1
java -Dcas.saml-sp.salesforce.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SALESFORCE_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.salesforce.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sans-sth.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SecuringTheHuman.
CAS Property: cas.saml-sp.sans-sth.attributes
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.
.properties
files:
1
cas.saml-sp.sans-sth.attributes=...
1
cas:
saml-sp:
sans-sth:
attributes: "..."
1
java -Dcas.saml-sp.sans-sth.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SANS_STH_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sans-sth.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sans-sth.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SecuringTheHuman.
CAS Property: cas.saml-sp.sans-sth.description
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.
.properties
files:
1
cas.saml-sp.sans-sth.description= SAML SP Integration
1
cas:
saml-sp:
sans-sth:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.sans-sth.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SANS_STH_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sans-sth.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sans-sth.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SecuringTheHuman.
CAS Property: cas.saml-sp.sans-sth.entity-ids
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.
.properties
files:
1
cas.saml-sp.sans-sth.entity-ids=...
1
cas:
saml-sp:
sans-sth:
entity-ids: "..."
1
java -Dcas.saml-sp.sans-sth.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SANS_STH_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sans-sth.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sans-sth.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SecuringTheHuman.
CAS Property: cas.saml-sp.sans-sth.name
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.
.properties
files:
1
cas.saml-sp.sans-sth.name=...
1
cas:
saml-sp:
sans-sth:
name: "..."
1
java -Dcas.saml-sp.sans-sth.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SANS_STH_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sans-sth.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sans-sth.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SecuringTheHuman.
CAS Property: cas.saml-sp.sans-sth.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.sans-sth.name-id-attribute=...
1
cas:
saml-sp:
sans-sth:
name-id-attribute: "..."
1
java -Dcas.saml-sp.sans-sth.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SANS_STH_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sans-sth.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sans-sth.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SecuringTheHuman.
CAS Property: cas.saml-sp.sans-sth.name-id-format
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.
.properties
files:
1
cas.saml-sp.sans-sth.name-id-format=...
1
cas:
saml-sp:
sans-sth:
name-id-format: "..."
1
java -Dcas.saml-sp.sans-sth.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SANS_STH_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sans-sth.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sans-sth.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SecuringTheHuman.
CAS Property: cas.saml-sp.sans-sth.sign-assertions
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.
.properties
files:
1
cas.saml-sp.sans-sth.sign-assertions=...
1
cas:
saml-sp:
sans-sth:
sign-assertions: "..."
1
java -Dcas.saml-sp.sans-sth.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SANS_STH_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sans-sth.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sans-sth.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SecuringTheHuman.
CAS Property: cas.saml-sp.sans-sth.sign-responses
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.
.properties
files:
1
cas.saml-sp.sans-sth.sign-responses=true
1
cas:
saml-sp:
sans-sth:
sign-responses: "true"
1
java -Dcas.saml-sp.sans-sth.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SANS_STH_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sans-sth.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sans-sth.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SecuringTheHuman.
CAS Property: cas.saml-sp.sans-sth.signature-location
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.
.properties
files:
1
cas.saml-sp.sans-sth.signature-location=...
1
cas:
saml-sp:
sans-sth:
signature-location: "..."
1
java -Dcas.saml-sp.sans-sth.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SANS_STH_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sans-sth.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.service-now.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ServiceNow.
CAS Property: cas.saml-sp.service-now.attributes
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.
.properties
files:
1
cas.saml-sp.service-now.attributes=...
1
cas:
saml-sp:
service-now:
attributes: "..."
1
java -Dcas.saml-sp.service-now.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SERVICE_NOW_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.service-now.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.service-now.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ServiceNow.
CAS Property: cas.saml-sp.service-now.description
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.
.properties
files:
1
cas.saml-sp.service-now.description= SAML SP Integration
1
cas:
saml-sp:
service-now:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.service-now.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SERVICE_NOW_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.service-now.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.service-now.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ServiceNow.
CAS Property: cas.saml-sp.service-now.entity-ids
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.
.properties
files:
1
cas.saml-sp.service-now.entity-ids=...
1
cas:
saml-sp:
service-now:
entity-ids: "..."
1
java -Dcas.saml-sp.service-now.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SERVICE_NOW_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.service-now.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.service-now.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ServiceNow.
CAS Property: cas.saml-sp.service-now.name
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.
.properties
files:
1
cas.saml-sp.service-now.name=...
1
cas:
saml-sp:
service-now:
name: "..."
1
java -Dcas.saml-sp.service-now.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SERVICE_NOW_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.service-now.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.service-now.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ServiceNow.
CAS Property: cas.saml-sp.service-now.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.service-now.name-id-attribute=...
1
cas:
saml-sp:
service-now:
name-id-attribute: "..."
1
java -Dcas.saml-sp.service-now.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SERVICE_NOW_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.service-now.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.service-now.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ServiceNow.
CAS Property: cas.saml-sp.service-now.name-id-format
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.
.properties
files:
1
cas.saml-sp.service-now.name-id-format=...
1
cas:
saml-sp:
service-now:
name-id-format: "..."
1
java -Dcas.saml-sp.service-now.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SERVICE_NOW_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.service-now.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.service-now.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ServiceNow.
CAS Property: cas.saml-sp.service-now.sign-assertions
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.
.properties
files:
1
cas.saml-sp.service-now.sign-assertions=...
1
cas:
saml-sp:
service-now:
sign-assertions: "..."
1
java -Dcas.saml-sp.service-now.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SERVICE_NOW_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.service-now.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.service-now.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ServiceNow.
CAS Property: cas.saml-sp.service-now.sign-responses
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.
.properties
files:
1
cas.saml-sp.service-now.sign-responses=true
1
cas:
saml-sp:
service-now:
sign-responses: "true"
1
java -Dcas.saml-sp.service-now.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SERVICE_NOW_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.service-now.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.service-now.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.ServiceNow.
CAS Property: cas.saml-sp.service-now.signature-location
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.
.properties
files:
1
cas.saml-sp.service-now.signature-location=...
1
cas:
saml-sp:
service-now:
signature-location: "..."
1
java -Dcas.saml-sp.service-now.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SERVICE_NOW_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.service-now.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.slack.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Slack.
CAS Property: cas.saml-sp.slack.attributes
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.
.properties
files:
1
cas.saml-sp.slack.attributes=...
1
cas:
saml-sp:
slack:
attributes: "..."
1
java -Dcas.saml-sp.slack.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SLACK_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.slack.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.slack.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Slack.
CAS Property: cas.saml-sp.slack.description
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.
.properties
files:
1
cas.saml-sp.slack.description= SAML SP Integration
1
cas:
saml-sp:
slack:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.slack.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SLACK_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.slack.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.slack.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Slack.
CAS Property: cas.saml-sp.slack.entity-ids
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.
.properties
files:
1
cas.saml-sp.slack.entity-ids=...
1
cas:
saml-sp:
slack:
entity-ids: "..."
1
java -Dcas.saml-sp.slack.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SLACK_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.slack.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.slack.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Slack.
CAS Property: cas.saml-sp.slack.name
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.
.properties
files:
1
cas.saml-sp.slack.name=...
1
cas:
saml-sp:
slack:
name: "..."
1
java -Dcas.saml-sp.slack.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SLACK_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.slack.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.slack.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Slack.
CAS Property: cas.saml-sp.slack.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.slack.name-id-attribute=...
1
cas:
saml-sp:
slack:
name-id-attribute: "..."
1
java -Dcas.saml-sp.slack.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SLACK_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.slack.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.slack.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Slack.
CAS Property: cas.saml-sp.slack.name-id-format
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.
.properties
files:
1
cas.saml-sp.slack.name-id-format=...
1
cas:
saml-sp:
slack:
name-id-format: "..."
1
java -Dcas.saml-sp.slack.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SLACK_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.slack.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.slack.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Slack.
CAS Property: cas.saml-sp.slack.sign-assertions
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.
.properties
files:
1
cas.saml-sp.slack.sign-assertions=...
1
cas:
saml-sp:
slack:
sign-assertions: "..."
1
java -Dcas.saml-sp.slack.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SLACK_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.slack.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.slack.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Slack.
CAS Property: cas.saml-sp.slack.sign-responses
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.
.properties
files:
1
cas.saml-sp.slack.sign-responses=true
1
cas:
saml-sp:
slack:
sign-responses: "true"
1
java -Dcas.saml-sp.slack.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SLACK_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.slack.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.slack.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Slack.
CAS Property: cas.saml-sp.slack.signature-location
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.
.properties
files:
1
cas.saml-sp.slack.signature-location=...
1
cas:
saml-sp:
slack:
signature-location: "..."
1
java -Dcas.saml-sp.slack.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SLACK_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.slack.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sserca.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SunshineStateEdResearchAlliance.
CAS Property: cas.saml-sp.sserca.attributes
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.
.properties
files:
1
cas.saml-sp.sserca.attributes=...
1
cas:
saml-sp:
sserca:
attributes: "..."
1
java -Dcas.saml-sp.sserca.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SSERCA_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sserca.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sserca.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SunshineStateEdResearchAlliance.
CAS Property: cas.saml-sp.sserca.description
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.
.properties
files:
1
cas.saml-sp.sserca.description= SAML SP Integration
1
cas:
saml-sp:
sserca:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.sserca.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SSERCA_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sserca.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sserca.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SunshineStateEdResearchAlliance.
CAS Property: cas.saml-sp.sserca.entity-ids
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.
.properties
files:
1
cas.saml-sp.sserca.entity-ids=...
1
cas:
saml-sp:
sserca:
entity-ids: "..."
1
java -Dcas.saml-sp.sserca.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SSERCA_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sserca.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sserca.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SunshineStateEdResearchAlliance.
CAS Property: cas.saml-sp.sserca.name
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.
.properties
files:
1
cas.saml-sp.sserca.name=...
1
cas:
saml-sp:
sserca:
name: "..."
1
java -Dcas.saml-sp.sserca.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SSERCA_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sserca.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sserca.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SunshineStateEdResearchAlliance.
CAS Property: cas.saml-sp.sserca.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.sserca.name-id-attribute=...
1
cas:
saml-sp:
sserca:
name-id-attribute: "..."
1
java -Dcas.saml-sp.sserca.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SSERCA_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sserca.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sserca.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SunshineStateEdResearchAlliance.
CAS Property: cas.saml-sp.sserca.name-id-format
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.
.properties
files:
1
cas.saml-sp.sserca.name-id-format=...
1
cas:
saml-sp:
sserca:
name-id-format: "..."
1
java -Dcas.saml-sp.sserca.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SSERCA_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sserca.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sserca.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SunshineStateEdResearchAlliance.
CAS Property: cas.saml-sp.sserca.sign-assertions
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.
.properties
files:
1
cas.saml-sp.sserca.sign-assertions=...
1
cas:
saml-sp:
sserca:
sign-assertions: "..."
1
java -Dcas.saml-sp.sserca.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SSERCA_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sserca.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sserca.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SunshineStateEdResearchAlliance.
CAS Property: cas.saml-sp.sserca.sign-responses
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.
.properties
files:
1
cas.saml-sp.sserca.sign-responses=true
1
cas:
saml-sp:
sserca:
sign-responses: "true"
1
java -Dcas.saml-sp.sserca.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SSERCA_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sserca.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.sserca.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.SunshineStateEdResearchAlliance.
CAS Property: cas.saml-sp.sserca.signature-location
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.
.properties
files:
1
cas.saml-sp.sserca.signature-location=...
1
cas:
saml-sp:
sserca:
signature-location: "..."
1
java -Dcas.saml-sp.sserca.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SSERCA_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.sserca.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.symplicity.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Symplicity.
CAS Property: cas.saml-sp.symplicity.attributes
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.
.properties
files:
1
cas.saml-sp.symplicity.attributes=...
1
cas:
saml-sp:
symplicity:
attributes: "..."
1
java -Dcas.saml-sp.symplicity.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SYMPLICITY_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.symplicity.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.symplicity.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Symplicity.
CAS Property: cas.saml-sp.symplicity.description
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.
.properties
files:
1
cas.saml-sp.symplicity.description= SAML SP Integration
1
cas:
saml-sp:
symplicity:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.symplicity.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SYMPLICITY_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.symplicity.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.symplicity.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Symplicity.
CAS Property: cas.saml-sp.symplicity.entity-ids
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.
.properties
files:
1
cas.saml-sp.symplicity.entity-ids=...
1
cas:
saml-sp:
symplicity:
entity-ids: "..."
1
java -Dcas.saml-sp.symplicity.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SYMPLICITY_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.symplicity.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.symplicity.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Symplicity.
CAS Property: cas.saml-sp.symplicity.name
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.
.properties
files:
1
cas.saml-sp.symplicity.name=...
1
cas:
saml-sp:
symplicity:
name: "..."
1
java -Dcas.saml-sp.symplicity.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SYMPLICITY_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.symplicity.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.symplicity.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Symplicity.
CAS Property: cas.saml-sp.symplicity.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.symplicity.name-id-attribute=...
1
cas:
saml-sp:
symplicity:
name-id-attribute: "..."
1
java -Dcas.saml-sp.symplicity.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SYMPLICITY_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.symplicity.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.symplicity.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Symplicity.
CAS Property: cas.saml-sp.symplicity.name-id-format
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.
.properties
files:
1
cas.saml-sp.symplicity.name-id-format=...
1
cas:
saml-sp:
symplicity:
name-id-format: "..."
1
java -Dcas.saml-sp.symplicity.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SYMPLICITY_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.symplicity.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.symplicity.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Symplicity.
CAS Property: cas.saml-sp.symplicity.sign-assertions
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.
.properties
files:
1
cas.saml-sp.symplicity.sign-assertions=...
1
cas:
saml-sp:
symplicity:
sign-assertions: "..."
1
java -Dcas.saml-sp.symplicity.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SYMPLICITY_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.symplicity.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.symplicity.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Symplicity.
CAS Property: cas.saml-sp.symplicity.sign-responses
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.
.properties
files:
1
cas.saml-sp.symplicity.sign-responses=true
1
cas:
saml-sp:
symplicity:
sign-responses: "true"
1
java -Dcas.saml-sp.symplicity.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SYMPLICITY_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.symplicity.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.symplicity.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Symplicity.
CAS Property: cas.saml-sp.symplicity.signature-location
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.
.properties
files:
1
cas.saml-sp.symplicity.signature-location=...
1
cas:
saml-sp:
symplicity:
signature-location: "..."
1
java -Dcas.saml-sp.symplicity.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_SYMPLICITY_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.symplicity.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.tableau.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Tableau.
CAS Property: cas.saml-sp.tableau.attributes
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.
.properties
files:
1
cas.saml-sp.tableau.attributes=...
1
cas:
saml-sp:
tableau:
attributes: "..."
1
java -Dcas.saml-sp.tableau.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TABLEAU_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.tableau.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.tableau.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Tableau.
CAS Property: cas.saml-sp.tableau.description
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.
.properties
files:
1
cas.saml-sp.tableau.description= SAML SP Integration
1
cas:
saml-sp:
tableau:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.tableau.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TABLEAU_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.tableau.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.tableau.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Tableau.
CAS Property: cas.saml-sp.tableau.entity-ids
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.
.properties
files:
1
cas.saml-sp.tableau.entity-ids=...
1
cas:
saml-sp:
tableau:
entity-ids: "..."
1
java -Dcas.saml-sp.tableau.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TABLEAU_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.tableau.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.tableau.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Tableau.
CAS Property: cas.saml-sp.tableau.name
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.
.properties
files:
1
cas.saml-sp.tableau.name=...
1
cas:
saml-sp:
tableau:
name: "..."
1
java -Dcas.saml-sp.tableau.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TABLEAU_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.tableau.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.tableau.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Tableau.
CAS Property: cas.saml-sp.tableau.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.tableau.name-id-attribute=...
1
cas:
saml-sp:
tableau:
name-id-attribute: "..."
1
java -Dcas.saml-sp.tableau.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TABLEAU_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.tableau.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.tableau.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Tableau.
CAS Property: cas.saml-sp.tableau.name-id-format
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.
.properties
files:
1
cas.saml-sp.tableau.name-id-format=...
1
cas:
saml-sp:
tableau:
name-id-format: "..."
1
java -Dcas.saml-sp.tableau.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TABLEAU_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.tableau.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.tableau.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Tableau.
CAS Property: cas.saml-sp.tableau.sign-assertions
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.
.properties
files:
1
cas.saml-sp.tableau.sign-assertions=...
1
cas:
saml-sp:
tableau:
sign-assertions: "..."
1
java -Dcas.saml-sp.tableau.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TABLEAU_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.tableau.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.tableau.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Tableau.
CAS Property: cas.saml-sp.tableau.sign-responses
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.
.properties
files:
1
cas.saml-sp.tableau.sign-responses=true
1
cas:
saml-sp:
tableau:
sign-responses: "true"
1
java -Dcas.saml-sp.tableau.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TABLEAU_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.tableau.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.tableau.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Tableau.
CAS Property: cas.saml-sp.tableau.signature-location
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.
.properties
files:
1
cas.saml-sp.tableau.signature-location=...
1
cas:
saml-sp:
tableau:
signature-location: "..."
1
java -Dcas.saml-sp.tableau.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TABLEAU_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.tableau.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.top-hat.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.TopHat.
CAS Property: cas.saml-sp.top-hat.attributes
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.
.properties
files:
1
cas.saml-sp.top-hat.attributes=...
1
cas:
saml-sp:
top-hat:
attributes: "..."
1
java -Dcas.saml-sp.top-hat.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TOP_HAT_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.top-hat.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.top-hat.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.TopHat.
CAS Property: cas.saml-sp.top-hat.description
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.
.properties
files:
1
cas.saml-sp.top-hat.description= SAML SP Integration
1
cas:
saml-sp:
top-hat:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.top-hat.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TOP_HAT_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.top-hat.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.top-hat.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.TopHat.
CAS Property: cas.saml-sp.top-hat.entity-ids
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.
.properties
files:
1
cas.saml-sp.top-hat.entity-ids=...
1
cas:
saml-sp:
top-hat:
entity-ids: "..."
1
java -Dcas.saml-sp.top-hat.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TOP_HAT_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.top-hat.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.top-hat.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.TopHat.
CAS Property: cas.saml-sp.top-hat.name
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.
.properties
files:
1
cas.saml-sp.top-hat.name=...
1
cas:
saml-sp:
top-hat:
name: "..."
1
java -Dcas.saml-sp.top-hat.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TOP_HAT_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.top-hat.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.top-hat.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.TopHat.
CAS Property: cas.saml-sp.top-hat.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.top-hat.name-id-attribute=...
1
cas:
saml-sp:
top-hat:
name-id-attribute: "..."
1
java -Dcas.saml-sp.top-hat.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TOP_HAT_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.top-hat.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.top-hat.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.TopHat.
CAS Property: cas.saml-sp.top-hat.name-id-format
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.
.properties
files:
1
cas.saml-sp.top-hat.name-id-format=...
1
cas:
saml-sp:
top-hat:
name-id-format: "..."
1
java -Dcas.saml-sp.top-hat.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TOP_HAT_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.top-hat.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.top-hat.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.TopHat.
CAS Property: cas.saml-sp.top-hat.sign-assertions
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.
.properties
files:
1
cas.saml-sp.top-hat.sign-assertions=...
1
cas:
saml-sp:
top-hat:
sign-assertions: "..."
1
java -Dcas.saml-sp.top-hat.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TOP_HAT_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.top-hat.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.top-hat.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.TopHat.
CAS Property: cas.saml-sp.top-hat.sign-responses
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.
.properties
files:
1
cas.saml-sp.top-hat.sign-responses=true
1
cas:
saml-sp:
top-hat:
sign-responses: "true"
1
java -Dcas.saml-sp.top-hat.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TOP_HAT_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.top-hat.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.top-hat.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.TopHat.
CAS Property: cas.saml-sp.top-hat.signature-location
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.
.properties
files:
1
cas.saml-sp.top-hat.signature-location=...
1
cas:
saml-sp:
top-hat:
signature-location: "..."
1
java -Dcas.saml-sp.top-hat.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_TOP_HAT_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.top-hat.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.warp-wire.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WarpWire.
CAS Property: cas.saml-sp.warp-wire.attributes
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.
.properties
files:
1
cas.saml-sp.warp-wire.attributes=...
1
cas:
saml-sp:
warp-wire:
attributes: "..."
1
java -Dcas.saml-sp.warp-wire.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WARP_WIRE_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.warp-wire.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.warp-wire.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WarpWire.
CAS Property: cas.saml-sp.warp-wire.description
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.
.properties
files:
1
cas.saml-sp.warp-wire.description= SAML SP Integration
1
cas:
saml-sp:
warp-wire:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.warp-wire.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WARP_WIRE_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.warp-wire.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.warp-wire.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WarpWire.
CAS Property: cas.saml-sp.warp-wire.entity-ids
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.
.properties
files:
1
cas.saml-sp.warp-wire.entity-ids=...
1
cas:
saml-sp:
warp-wire:
entity-ids: "..."
1
java -Dcas.saml-sp.warp-wire.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WARP_WIRE_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.warp-wire.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.warp-wire.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WarpWire.
CAS Property: cas.saml-sp.warp-wire.name
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.
.properties
files:
1
cas.saml-sp.warp-wire.name=...
1
cas:
saml-sp:
warp-wire:
name: "..."
1
java -Dcas.saml-sp.warp-wire.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WARP_WIRE_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.warp-wire.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.warp-wire.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WarpWire.
CAS Property: cas.saml-sp.warp-wire.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.warp-wire.name-id-attribute=...
1
cas:
saml-sp:
warp-wire:
name-id-attribute: "..."
1
java -Dcas.saml-sp.warp-wire.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WARP_WIRE_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.warp-wire.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.warp-wire.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WarpWire.
CAS Property: cas.saml-sp.warp-wire.name-id-format
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.
.properties
files:
1
cas.saml-sp.warp-wire.name-id-format=...
1
cas:
saml-sp:
warp-wire:
name-id-format: "..."
1
java -Dcas.saml-sp.warp-wire.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WARP_WIRE_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.warp-wire.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.warp-wire.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WarpWire.
CAS Property: cas.saml-sp.warp-wire.sign-assertions
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.
.properties
files:
1
cas.saml-sp.warp-wire.sign-assertions=...
1
cas:
saml-sp:
warp-wire:
sign-assertions: "..."
1
java -Dcas.saml-sp.warp-wire.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WARP_WIRE_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.warp-wire.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.warp-wire.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WarpWire.
CAS Property: cas.saml-sp.warp-wire.sign-responses
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.
.properties
files:
1
cas.saml-sp.warp-wire.sign-responses=true
1
cas:
saml-sp:
warp-wire:
sign-responses: "true"
1
java -Dcas.saml-sp.warp-wire.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WARP_WIRE_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.warp-wire.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.warp-wire.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WarpWire.
CAS Property: cas.saml-sp.warp-wire.signature-location
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.
.properties
files:
1
cas.saml-sp.warp-wire.signature-location=...
1
cas:
saml-sp:
warp-wire:
signature-location: "..."
1
java -Dcas.saml-sp.warp-wire.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WARP_WIRE_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.warp-wire.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.web-advisor.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WebAdvisor.
CAS Property: cas.saml-sp.web-advisor.attributes
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.
.properties
files:
1
cas.saml-sp.web-advisor.attributes=...
1
cas:
saml-sp:
web-advisor:
attributes: "..."
1
java -Dcas.saml-sp.web-advisor.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEB_ADVISOR_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.web-advisor.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.web-advisor.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WebAdvisor.
CAS Property: cas.saml-sp.web-advisor.description
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.
.properties
files:
1
cas.saml-sp.web-advisor.description= SAML SP Integration
1
cas:
saml-sp:
web-advisor:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.web-advisor.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEB_ADVISOR_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.web-advisor.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.web-advisor.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WebAdvisor.
CAS Property: cas.saml-sp.web-advisor.entity-ids
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.
.properties
files:
1
cas.saml-sp.web-advisor.entity-ids=...
1
cas:
saml-sp:
web-advisor:
entity-ids: "..."
1
java -Dcas.saml-sp.web-advisor.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEB_ADVISOR_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.web-advisor.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.web-advisor.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WebAdvisor.
CAS Property: cas.saml-sp.web-advisor.name
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.
.properties
files:
1
cas.saml-sp.web-advisor.name=...
1
cas:
saml-sp:
web-advisor:
name: "..."
1
java -Dcas.saml-sp.web-advisor.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEB_ADVISOR_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.web-advisor.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.web-advisor.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WebAdvisor.
CAS Property: cas.saml-sp.web-advisor.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.web-advisor.name-id-attribute=...
1
cas:
saml-sp:
web-advisor:
name-id-attribute: "..."
1
java -Dcas.saml-sp.web-advisor.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEB_ADVISOR_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.web-advisor.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.web-advisor.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WebAdvisor.
CAS Property: cas.saml-sp.web-advisor.name-id-format
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.
.properties
files:
1
cas.saml-sp.web-advisor.name-id-format=...
1
cas:
saml-sp:
web-advisor:
name-id-format: "..."
1
java -Dcas.saml-sp.web-advisor.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEB_ADVISOR_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.web-advisor.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.web-advisor.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WebAdvisor.
CAS Property: cas.saml-sp.web-advisor.sign-assertions
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.
.properties
files:
1
cas.saml-sp.web-advisor.sign-assertions=...
1
cas:
saml-sp:
web-advisor:
sign-assertions: "..."
1
java -Dcas.saml-sp.web-advisor.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEB_ADVISOR_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.web-advisor.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.web-advisor.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WebAdvisor.
CAS Property: cas.saml-sp.web-advisor.sign-responses
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.
.properties
files:
1
cas.saml-sp.web-advisor.sign-responses=true
1
cas:
saml-sp:
web-advisor:
sign-responses: "true"
1
java -Dcas.saml-sp.web-advisor.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEB_ADVISOR_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.web-advisor.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.web-advisor.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.WebAdvisor.
CAS Property: cas.saml-sp.web-advisor.signature-location
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.
.properties
files:
1
cas.saml-sp.web-advisor.signature-location=...
1
cas:
saml-sp:
web-advisor:
signature-location: "..."
1
java -Dcas.saml-sp.web-advisor.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEB_ADVISOR_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.web-advisor.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.webex.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Webex.
CAS Property: cas.saml-sp.webex.attributes
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.
.properties
files:
1
cas.saml-sp.webex.attributes=...
1
cas:
saml-sp:
webex:
attributes: "..."
1
java -Dcas.saml-sp.webex.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEBEX_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.webex.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.webex.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Webex.
CAS Property: cas.saml-sp.webex.description
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.
.properties
files:
1
cas.saml-sp.webex.description= SAML SP Integration
1
cas:
saml-sp:
webex:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.webex.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEBEX_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.webex.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.webex.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Webex.
CAS Property: cas.saml-sp.webex.entity-ids
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.
.properties
files:
1
cas.saml-sp.webex.entity-ids=...
1
cas:
saml-sp:
webex:
entity-ids: "..."
1
java -Dcas.saml-sp.webex.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEBEX_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.webex.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.webex.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Webex.
CAS Property: cas.saml-sp.webex.name
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.
.properties
files:
1
cas.saml-sp.webex.name=...
1
cas:
saml-sp:
webex:
name: "..."
1
java -Dcas.saml-sp.webex.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEBEX_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.webex.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.webex.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Webex.
CAS Property: cas.saml-sp.webex.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.webex.name-id-attribute=...
1
cas:
saml-sp:
webex:
name-id-attribute: "..."
1
java -Dcas.saml-sp.webex.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEBEX_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.webex.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.webex.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Webex.
CAS Property: cas.saml-sp.webex.name-id-format
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.
.properties
files:
1
cas.saml-sp.webex.name-id-format=...
1
cas:
saml-sp:
webex:
name-id-format: "..."
1
java -Dcas.saml-sp.webex.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEBEX_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.webex.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.webex.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Webex.
CAS Property: cas.saml-sp.webex.sign-assertions
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.
.properties
files:
1
cas.saml-sp.webex.sign-assertions=...
1
cas:
saml-sp:
webex:
sign-assertions: "..."
1
java -Dcas.saml-sp.webex.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEBEX_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.webex.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.webex.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Webex.
CAS Property: cas.saml-sp.webex.sign-responses
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.
.properties
files:
1
cas.saml-sp.webex.sign-responses=true
1
cas:
saml-sp:
webex:
sign-responses: "true"
1
java -Dcas.saml-sp.webex.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEBEX_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.webex.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.webex.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Webex.
CAS Property: cas.saml-sp.webex.signature-location
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.
.properties
files:
1
cas.saml-sp.webex.signature-location=...
1
cas:
saml-sp:
webex:
signature-location: "..."
1
java -Dcas.saml-sp.webex.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WEBEX_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.webex.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.workday.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Workday.
CAS Property: cas.saml-sp.workday.attributes
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.
.properties
files:
1
cas.saml-sp.workday.attributes=...
1
cas:
saml-sp:
workday:
attributes: "..."
1
java -Dcas.saml-sp.workday.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WORKDAY_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.workday.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.workday.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Workday.
CAS Property: cas.saml-sp.workday.description
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.
.properties
files:
1
cas.saml-sp.workday.description= SAML SP Integration
1
cas:
saml-sp:
workday:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.workday.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WORKDAY_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.workday.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.workday.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Workday.
CAS Property: cas.saml-sp.workday.entity-ids
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.
.properties
files:
1
cas.saml-sp.workday.entity-ids=...
1
cas:
saml-sp:
workday:
entity-ids: "..."
1
java -Dcas.saml-sp.workday.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WORKDAY_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.workday.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.workday.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Workday.
CAS Property: cas.saml-sp.workday.name
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.
.properties
files:
1
cas.saml-sp.workday.name=...
1
cas:
saml-sp:
workday:
name: "..."
1
java -Dcas.saml-sp.workday.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WORKDAY_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.workday.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.workday.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Workday.
CAS Property: cas.saml-sp.workday.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.workday.name-id-attribute=...
1
cas:
saml-sp:
workday:
name-id-attribute: "..."
1
java -Dcas.saml-sp.workday.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WORKDAY_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.workday.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.workday.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Workday.
CAS Property: cas.saml-sp.workday.name-id-format
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.
.properties
files:
1
cas.saml-sp.workday.name-id-format=...
1
cas:
saml-sp:
workday:
name-id-format: "..."
1
java -Dcas.saml-sp.workday.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WORKDAY_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.workday.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.workday.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Workday.
CAS Property: cas.saml-sp.workday.sign-assertions
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.
.properties
files:
1
cas.saml-sp.workday.sign-assertions=...
1
cas:
saml-sp:
workday:
sign-assertions: "..."
1
java -Dcas.saml-sp.workday.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WORKDAY_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.workday.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.workday.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Workday.
CAS Property: cas.saml-sp.workday.sign-responses
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.
.properties
files:
1
cas.saml-sp.workday.sign-responses=true
1
cas:
saml-sp:
workday:
sign-responses: "true"
1
java -Dcas.saml-sp.workday.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WORKDAY_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.workday.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.workday.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Workday.
CAS Property: cas.saml-sp.workday.signature-location
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.
.properties
files:
1
cas.saml-sp.workday.signature-location=...
1
cas:
saml-sp:
workday:
signature-location: "..."
1
java -Dcas.saml-sp.workday.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_WORKDAY_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.workday.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.yuja.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Yuja.
CAS Property: cas.saml-sp.yuja.attributes
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.
.properties
files:
1
cas.saml-sp.yuja.attributes=...
1
cas:
saml-sp:
yuja:
attributes: "..."
1
java -Dcas.saml-sp.yuja.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_YUJA_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.yuja.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.yuja.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Yuja.
CAS Property: cas.saml-sp.yuja.description
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.
.properties
files:
1
cas.saml-sp.yuja.description= SAML SP Integration
1
cas:
saml-sp:
yuja:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.yuja.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_YUJA_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.yuja.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.yuja.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Yuja.
CAS Property: cas.saml-sp.yuja.entity-ids
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.
.properties
files:
1
cas.saml-sp.yuja.entity-ids=...
1
cas:
saml-sp:
yuja:
entity-ids: "..."
1
java -Dcas.saml-sp.yuja.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_YUJA_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.yuja.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.yuja.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Yuja.
CAS Property: cas.saml-sp.yuja.name
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.
.properties
files:
1
cas.saml-sp.yuja.name=...
1
cas:
saml-sp:
yuja:
name: "..."
1
java -Dcas.saml-sp.yuja.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_YUJA_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.yuja.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.yuja.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Yuja.
CAS Property: cas.saml-sp.yuja.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.yuja.name-id-attribute=...
1
cas:
saml-sp:
yuja:
name-id-attribute: "..."
1
java -Dcas.saml-sp.yuja.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_YUJA_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.yuja.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.yuja.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Yuja.
CAS Property: cas.saml-sp.yuja.name-id-format
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.
.properties
files:
1
cas.saml-sp.yuja.name-id-format=...
1
cas:
saml-sp:
yuja:
name-id-format: "..."
1
java -Dcas.saml-sp.yuja.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_YUJA_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.yuja.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.yuja.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Yuja.
CAS Property: cas.saml-sp.yuja.sign-assertions
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.
.properties
files:
1
cas.saml-sp.yuja.sign-assertions=...
1
cas:
saml-sp:
yuja:
sign-assertions: "..."
1
java -Dcas.saml-sp.yuja.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_YUJA_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.yuja.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.yuja.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Yuja.
CAS Property: cas.saml-sp.yuja.sign-responses
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.
.properties
files:
1
cas.saml-sp.yuja.sign-responses=true
1
cas:
saml-sp:
yuja:
sign-responses: "true"
1
java -Dcas.saml-sp.yuja.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_YUJA_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.yuja.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.yuja.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Yuja.
CAS Property: cas.saml-sp.yuja.signature-location
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.
.properties
files:
1
cas.saml-sp.yuja.signature-location=...
1
cas:
saml-sp:
yuja:
signature-location: "..."
1
java -Dcas.saml-sp.yuja.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_YUJA_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.yuja.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zendesk.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zendesk.
CAS Property: cas.saml-sp.zendesk.attributes
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.
.properties
files:
1
cas.saml-sp.zendesk.attributes=...
1
cas:
saml-sp:
zendesk:
attributes: "..."
1
java -Dcas.saml-sp.zendesk.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZENDESK_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zendesk.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zendesk.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zendesk.
CAS Property: cas.saml-sp.zendesk.description
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.
.properties
files:
1
cas.saml-sp.zendesk.description= SAML SP Integration
1
cas:
saml-sp:
zendesk:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.zendesk.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZENDESK_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zendesk.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zendesk.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zendesk.
CAS Property: cas.saml-sp.zendesk.entity-ids
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.
.properties
files:
1
cas.saml-sp.zendesk.entity-ids=...
1
cas:
saml-sp:
zendesk:
entity-ids: "..."
1
java -Dcas.saml-sp.zendesk.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZENDESK_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zendesk.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zendesk.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zendesk.
CAS Property: cas.saml-sp.zendesk.name
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.
.properties
files:
1
cas.saml-sp.zendesk.name=...
1
cas:
saml-sp:
zendesk:
name: "..."
1
java -Dcas.saml-sp.zendesk.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZENDESK_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zendesk.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zendesk.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zendesk.
CAS Property: cas.saml-sp.zendesk.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.zendesk.name-id-attribute=...
1
cas:
saml-sp:
zendesk:
name-id-attribute: "..."
1
java -Dcas.saml-sp.zendesk.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZENDESK_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zendesk.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zendesk.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zendesk.
CAS Property: cas.saml-sp.zendesk.name-id-format
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.
.properties
files:
1
cas.saml-sp.zendesk.name-id-format=...
1
cas:
saml-sp:
zendesk:
name-id-format: "..."
1
java -Dcas.saml-sp.zendesk.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZENDESK_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zendesk.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zendesk.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zendesk.
CAS Property: cas.saml-sp.zendesk.sign-assertions
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.
.properties
files:
1
cas.saml-sp.zendesk.sign-assertions=...
1
cas:
saml-sp:
zendesk:
sign-assertions: "..."
1
java -Dcas.saml-sp.zendesk.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZENDESK_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zendesk.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zendesk.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zendesk.
CAS Property: cas.saml-sp.zendesk.sign-responses
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.
.properties
files:
1
cas.saml-sp.zendesk.sign-responses=true
1
cas:
saml-sp:
zendesk:
sign-responses: "true"
1
java -Dcas.saml-sp.zendesk.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZENDESK_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zendesk.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zendesk.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zendesk.
CAS Property: cas.saml-sp.zendesk.signature-location
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.
.properties
files:
1
cas.saml-sp.zendesk.signature-location=...
1
cas:
saml-sp:
zendesk:
signature-location: "..."
1
java -Dcas.saml-sp.zendesk.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZENDESK_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zendesk.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zimbra.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zimbra.
CAS Property: cas.saml-sp.zimbra.attributes
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.
.properties
files:
1
cas.saml-sp.zimbra.attributes=...
1
cas:
saml-sp:
zimbra:
attributes: "..."
1
java -Dcas.saml-sp.zimbra.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZIMBRA_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zimbra.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zimbra.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zimbra.
CAS Property: cas.saml-sp.zimbra.description
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.
.properties
files:
1
cas.saml-sp.zimbra.description= SAML SP Integration
1
cas:
saml-sp:
zimbra:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.zimbra.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZIMBRA_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zimbra.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zimbra.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zimbra.
CAS Property: cas.saml-sp.zimbra.entity-ids
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.
.properties
files:
1
cas.saml-sp.zimbra.entity-ids=...
1
cas:
saml-sp:
zimbra:
entity-ids: "..."
1
java -Dcas.saml-sp.zimbra.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZIMBRA_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zimbra.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zimbra.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zimbra.
CAS Property: cas.saml-sp.zimbra.name
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.
.properties
files:
1
cas.saml-sp.zimbra.name=...
1
cas:
saml-sp:
zimbra:
name: "..."
1
java -Dcas.saml-sp.zimbra.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZIMBRA_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zimbra.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zimbra.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zimbra.
CAS Property: cas.saml-sp.zimbra.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.zimbra.name-id-attribute=...
1
cas:
saml-sp:
zimbra:
name-id-attribute: "..."
1
java -Dcas.saml-sp.zimbra.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZIMBRA_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zimbra.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zimbra.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zimbra.
CAS Property: cas.saml-sp.zimbra.name-id-format
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.
.properties
files:
1
cas.saml-sp.zimbra.name-id-format=...
1
cas:
saml-sp:
zimbra:
name-id-format: "..."
1
java -Dcas.saml-sp.zimbra.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZIMBRA_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zimbra.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zimbra.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zimbra.
CAS Property: cas.saml-sp.zimbra.sign-assertions
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.
.properties
files:
1
cas.saml-sp.zimbra.sign-assertions=...
1
cas:
saml-sp:
zimbra:
sign-assertions: "..."
1
java -Dcas.saml-sp.zimbra.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZIMBRA_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zimbra.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zimbra.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zimbra.
CAS Property: cas.saml-sp.zimbra.sign-responses
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.
.properties
files:
1
cas.saml-sp.zimbra.sign-responses=true
1
cas:
saml-sp:
zimbra:
sign-responses: "true"
1
java -Dcas.saml-sp.zimbra.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZIMBRA_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zimbra.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zimbra.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zimbra.
CAS Property: cas.saml-sp.zimbra.signature-location
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.
.properties
files:
1
cas.saml-sp.zimbra.signature-location=...
1
cas:
saml-sp:
zimbra:
signature-location: "..."
1
java -Dcas.saml-sp.zimbra.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZIMBRA_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zimbra.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zoom.attributes=
Set up the attribute release policy for this service. Allow attributes that are to be released to this SP. Attributes should be separated by commas and can be virtually mapped and renamed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zoom.
CAS Property: cas.saml-sp.zoom.attributes
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.
.properties
files:
1
cas.saml-sp.zoom.attributes=...
1
cas:
saml-sp:
zoom:
attributes: "..."
1
java -Dcas.saml-sp.zoom.attributes="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZOOM_ATTRIBUTES="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zoom.attributes="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zoom.description= SAML SP Integration
Description of this service provider as it's stored in the registry.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zoom.
CAS Property: cas.saml-sp.zoom.description
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.
.properties
files:
1
cas.saml-sp.zoom.description= SAML SP Integration
1
cas:
saml-sp:
zoom:
description: " SAML SP Integration"
1
java -Dcas.saml-sp.zoom.description=" SAML SP Integration" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZOOM_DESCRIPTION=" SAML SP Integration"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zoom.description=" SAML SP Integration"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zoom.entity-ids=
List of entityIds allowed for this service provider. Multiple ids can be specified in the event that the metadata is an aggregate.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zoom.
CAS Property: cas.saml-sp.zoom.entity-ids
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.
.properties
files:
1
cas.saml-sp.zoom.entity-ids=...
1
cas:
saml-sp:
zoom:
entity-ids: "..."
1
java -Dcas.saml-sp.zoom.entity-ids="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZOOM_ENTITY_IDS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zoom.entity-ids="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zoom.name=
Name of this service provider.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zoom.
CAS Property: cas.saml-sp.zoom.name
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.
.properties
files:
1
cas.saml-sp.zoom.name=...
1
cas:
saml-sp:
zoom:
name: "..."
1
java -Dcas.saml-sp.zoom.name="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZOOM_NAME="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zoom.name="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zoom.name-id-attribute=
Attribute to use when generating nameids for this SP.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zoom.
CAS Property: cas.saml-sp.zoom.name-id-attribute
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.
.properties
files:
1
cas.saml-sp.zoom.name-id-attribute=...
1
cas:
saml-sp:
zoom:
name-id-attribute: "..."
1
java -Dcas.saml-sp.zoom.name-id-attribute="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZOOM_NAME_ID_ATTRIBUTE="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zoom.name-id-attribute="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zoom.name-id-format=
The forced nameId format to use when generating a response.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zoom.
CAS Property: cas.saml-sp.zoom.name-id-format
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.
.properties
files:
1
cas.saml-sp.zoom.name-id-format=...
1
cas:
saml-sp:
zoom:
name-id-format: "..."
1
java -Dcas.saml-sp.zoom.name-id-format="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZOOM_NAME_ID_FORMAT="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zoom.name-id-format="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zoom.sign-assertions=
Indicate whether assertions should be signed. Available values are as follows:
-
TRUE
: Constant to represent the true state. -
FALSE
: Constant to represent the false state. -
UNDEFINED
: Constant to represent the undefined state.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zoom.
CAS Property: cas.saml-sp.zoom.sign-assertions
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.
.properties
files:
1
cas.saml-sp.zoom.sign-assertions=...
1
cas:
saml-sp:
zoom:
sign-assertions: "..."
1
java -Dcas.saml-sp.zoom.sign-assertions="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZOOM_SIGN_ASSERTIONS="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zoom.sign-assertions="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zoom.sign-responses=true
Indicate whether responses should be signed.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zoom.
CAS Property: cas.saml-sp.zoom.sign-responses
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.
.properties
files:
1
cas.saml-sp.zoom.sign-responses=true
1
cas:
saml-sp:
zoom:
sign-responses: "true"
1
java -Dcas.saml-sp.zoom.sign-responses="true" -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZOOM_SIGN_RESPONSES="true"
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zoom.sign-responses="true"
cas.war
with an embedded server container and can be found in the build/libs
directory.
cas.saml-sp.zoom.signature-location=
Signature location used to verify metadata.
org.apereo.cas.configuration.model.support.saml.sps.SamlServiceProviderProperties.Zoom.
CAS Property: cas.saml-sp.zoom.signature-location
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.
.properties
files:
1
cas.saml-sp.zoom.signature-location=...
1
cas:
saml-sp:
zoom:
signature-location: "..."
1
java -Dcas.saml-sp.zoom.signature-location="..." -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory. Note the placement of the system property which must be
specified before the CAS web application is launched.
1
2
3
export CAS_SAML_SP_ZOOM_SIGNATURE_LOCATION="..."
java -jar build/libs/cas.war
cas.war
with an embedded server container and can be found in the build/libs
directory.
1
java -jar build/libs/cas.war --cas.saml-sp.zoom.signature-location="..."
cas.war
with an embedded server container and can be found in the build/libs
directory.
Please review this guide to configure your build.
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.
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.
Note: For InCommon and other metadata aggregates, multiple entity ids can be specified to
filter the InCommon metadata. EntityIds can be regular expression patterns and are mapped to
CAS’ serviceId
field in the registry. The signature location MUST BE the public key used to sign the metadata.