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.