Package org.springframework.security.cas
Class ServiceProperties
java.lang.Object
org.springframework.security.cas.ServiceProperties
- All Implemented Interfaces:
org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
SamlServiceProperties
public class ServiceProperties
extends Object
implements org.springframework.beans.factory.InitializingBean
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.
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
final String
final String
Represents the service the user is authenticating to.final String
Configures the Request parameter to look for when attempting to send a request to CAS.final boolean
final boolean
Indicates whether therenew
parameter should be sent to the CAS login URL and CAS validation URL.final void
setArtifactParameter
(String artifactParameter) Configures the Request Parameter to look for when attempting to see if a CAS ticket was sent from the server.final void
setAuthenticateAllArtifacts
(boolean authenticateAllArtifacts) If true, then any non-null artifact (ticket) should be authenticated.final void
setSendRenew
(boolean sendRenew) final void
setService
(String service) final void
setServiceParameter
(String serviceParameter)
-
Field Details
-
DEFAULT_CAS_ARTIFACT_PARAMETER
- See Also:
-
DEFAULT_CAS_SERVICE_PARAMETER
- See Also:
-
-
Constructor Details
-
ServiceProperties
public ServiceProperties()
-
-
Method Details
-
afterPropertiesSet
public void afterPropertiesSet()- Specified by:
afterPropertiesSet
in interfaceorg.springframework.beans.factory.InitializingBean
-
getService
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/login/cas
- Returns:
- the URL of the service the user is authenticating to
-
isSendRenew
public final boolean isSendRenew()Indicates whether therenew
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 totrue
. Defaults tofalse
, providing automated single sign on.- Returns:
- whether to send the
renew
parameter to CAS
-
setSendRenew
public final void setSendRenew(boolean sendRenew) -
setService
-
getArtifactParameter
-
setArtifactParameter
Configures the Request Parameter to look for when attempting to see if a CAS ticket was sent from the server.- Parameters:
artifactParameter
- the id to use. Default is "ticket".
-
getServiceParameter
Configures the Request parameter to look for when attempting to send a request to CAS.- Returns:
- the service parameter to use. Default is "service".
-
setServiceParameter
-
isAuthenticateAllArtifacts
public final boolean isAuthenticateAllArtifacts() -
setAuthenticateAllArtifacts
public final void setAuthenticateAllArtifacts(boolean authenticateAllArtifacts) 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.- Parameters:
authenticateAllArtifacts
-
-