Package org.apereo.cas.web.flow
Interface SingleSignOnParticipationStrategy
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface SingleSignOnParticipationStrategyThis isSingleSignOnParticipationStrategy.- Since:
- 5.2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisParticipating(org.springframework.webflow.execution.RequestContext context)Tries to determine if this request should participate in SSO.
-
-
-
Method Detail
-
isParticipating
boolean isParticipating(org.springframework.webflow.execution.RequestContext context)
Tries to determine if this request should participate in SSO. Services can opt out of SSO conditionally either per policy or per request parameters. Various internal processes in CAS also try to determine whether SSO should be honored for this request.- Parameters:
context- the request- Returns:
- true if authn is renewed
-
-