Interface CasWebflowExceptionHandler<T extends java.lang.Exception>
-
- Type Parameters:
T- the type parameter
- All Superinterfaces:
org.springframework.core.Ordered
- All Known Implementing Classes:
DefaultCasWebflowAbstractTicketExceptionHandler,DefaultCasWebflowAuthenticationExceptionHandler,GenericCasWebflowExceptionHandler,GroovyCasWebflowAuthenticationExceptionHandler
public interface CasWebflowExceptionHandler<T extends java.lang.Exception> extends org.springframework.core.OrderedThis isCasWebflowExceptionHandler.- Since:
- 6.1.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringUNKNOWNUnknown event id, principal or action.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.webflow.execution.Eventhandle(T exception, org.springframework.webflow.execution.RequestContext requestContext)Handle event.booleansupports(java.lang.Exception exception, org.springframework.webflow.execution.RequestContext requestContext)Supports exception.
-
-
-
Field Detail
-
UNKNOWN
static final java.lang.String UNKNOWN
Unknown event id, principal or action.- See Also:
- Constant Field Values
-
-
Method Detail
-
handle
org.springframework.webflow.execution.Event handle(T exception, org.springframework.webflow.execution.RequestContext requestContext)
Handle event.- Parameters:
exception- the exceptionrequestContext- the request context- Returns:
- the event
-
supports
boolean supports(java.lang.Exception exception, org.springframework.webflow.execution.RequestContext requestContext)Supports exception.- Parameters:
exception- the exceptionrequestContext- the request context- Returns:
- true/false
-
-