| java.lang.Object | |
| ↳ | org.springframework.security.cas.ServiceProperties |
Known Direct Subclasses
|
Stores properties related to this CAS service.
Each web application capable of processing CAS tickets is known as a service. This class stores the properties that are relevant to the local CAS service, being the application that is being secured by Spring Security.
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| String | DEFAULT_CAS_ARTIFACT_PARAMETER | ||||||||||
| String | DEFAULT_CAS_SERVICE_PARAMETER | ||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Represents the service the user is authenticating to.
| |||||||||||
Configures the Request parameter to look for when attempting to send a request to CAS.
| |||||||||||
Indicates whether the
renew parameter should be sent to the CAS login URL and CAS
validation URL. | |||||||||||
Configures the Request Parameter to look for when attempting to see if a CAS ticket was sent from the server.
| |||||||||||
If true, then any non-null artifact (ticket) should be authenticated.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
org.springframework.beans.factory.InitializingBean
| |||||||||||
Represents the service the user is authenticating to.
This service is the callback URL belonging to the local Spring Security System for Spring secured application. For example,
https://www.mycompany.com/application/j_spring_cas_security_check
Configures the Request parameter to look for when attempting to send a request to CAS.
Indicates whether the renew parameter should be sent to the CAS login URL and CAS
validation URL.
If true, it will force CAS to authenticate the user again (even if the
user has previously authenticated). During ticket validation it will require the ticket was generated as a
consequence of an explicit login. High security applications would probably set this to true.
Defaults to false, providing automated single sign on.
renew parameter to CAS
Configures the Request Parameter to look for when attempting to see if a CAS ticket was sent from the server.
| artifactParameter | the id to use. Default is "ticket". |
|---|
If true, then any non-null artifact (ticket) should be authenticated. Additionally, the service will be determined dynamically in order to ensure the service matches the expected value for this artifact.