Package org.apereo.cas.web.flow.actions
Class AbstractAuthenticationAction
- java.lang.Object
-
- org.springframework.webflow.action.AbstractAction
-
- org.apereo.cas.web.flow.actions.AbstractAuthenticationAction
-
- All Implemented Interfaces:
org.springframework.beans.factory.InitializingBean,org.springframework.webflow.execution.Action
- Direct Known Subclasses:
AbstractNonInteractiveCredentialsAction,InitialAuthenticationAction
public abstract class AbstractAuthenticationAction extends org.springframework.webflow.action.AbstractActionThis isAbstractAuthenticationAction.- Since:
- 5.0.0
-
-
Constructor Summary
Constructors Constructor Description AbstractAuthenticationAction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected org.springframework.webflow.execution.EventdoExecute(org.springframework.webflow.execution.RequestContext requestContext)protected org.springframework.webflow.execution.EventfireEventHooks(org.springframework.webflow.execution.Event event, org.springframework.webflow.execution.RequestContext ctx)Fire event hooks.protected voidonError(org.springframework.webflow.execution.RequestContext context)On error.protected voidonSuccess(org.springframework.webflow.execution.RequestContext context)On success.protected voidonWarn(org.springframework.webflow.execution.RequestContext context)On warn.
-
-
-
Method Detail
-
doExecute
protected org.springframework.webflow.execution.Event doExecute(org.springframework.webflow.execution.RequestContext requestContext)
- Specified by:
doExecutein classorg.springframework.webflow.action.AbstractAction
-
fireEventHooks
protected org.springframework.webflow.execution.Event fireEventHooks(org.springframework.webflow.execution.Event event, org.springframework.webflow.execution.RequestContext ctx)Fire event hooks.- Parameters:
event- the eventctx- the ctx- Returns:
- the event
-
onWarn
protected void onWarn(org.springframework.webflow.execution.RequestContext context)
On warn.- Parameters:
context- the context
-
onSuccess
protected void onSuccess(org.springframework.webflow.execution.RequestContext context)
On success.- Parameters:
context- the context
-
onError
protected void onError(org.springframework.webflow.execution.RequestContext context)
On error.- Parameters:
context- the context
-
-