Package org.apereo.cas.web.flow.resolver
Interface CasWebflowEventResolver
-
- All Known Subinterfaces:
CasDelegatingWebflowEventResolver
- All Known Implementing Classes:
AbstractCasWebflowEventResolver,DefaultCasDelegatingWebflowEventResolver,ServiceTicketRequestWebflowEventResolver
public interface CasWebflowEventResolverThis isCasWebflowEventResolverthat decides the next event in the authentication web flow.- Since:
- 5.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default java.lang.StringgetName()Define the name of this even resolver.java.util.Set<org.springframework.webflow.execution.Event>resolve(org.springframework.webflow.execution.RequestContext context)Resolve event.java.util.Set<org.springframework.webflow.execution.Event>resolveInternal(org.springframework.webflow.execution.RequestContext context)Resolve internal event.org.springframework.webflow.execution.EventresolveSingle(org.springframework.webflow.execution.RequestContext context)Resolve single event.
-
-
-
Method Detail
-
resolve
java.util.Set<org.springframework.webflow.execution.Event> resolve(org.springframework.webflow.execution.RequestContext context)
Resolve event.- Parameters:
context- the context- Returns:
- the event
-
resolveSingle
org.springframework.webflow.execution.Event resolveSingle(org.springframework.webflow.execution.RequestContext context)
Resolve single event.- Parameters:
context- the context- Returns:
- the event
-
getName
default java.lang.String getName()
Define the name of this even resolver.- Returns:
- name of the resolver.
-
resolveInternal
java.util.Set<org.springframework.webflow.execution.Event> resolveInternal(org.springframework.webflow.execution.RequestContext context)
Resolve internal event.- Parameters:
context- the context- Returns:
- the event
-
-