Class InterceptorInvocationResult
- java.lang.Object
-
- com.opencloud.slee.resources.sis.script.interceptors.InterceptorInvocationResult
-
- Direct Known Subclasses:
InterceptorInvocationResult.Completed
,InterceptorInvocationResult.Failed
,InterceptorInvocationResult.InProgress
public abstract class InterceptorInvocationResult extends Object
Class representing the result of an interceptor invocation.- Since:
- SIS 2.5.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
InterceptorInvocationResult.Completed
Class representing the result of an interceptor invocation that has completed successfully.static class
InterceptorInvocationResult.Failed
Class representing a failed result trying to invoke an interceptor.static class
InterceptorInvocationResult.InProgress
Class representing that an interceptor invocation is currently in progress and will complete asynchronously.static class
InterceptorInvocationResult.Outcome
Interceptor invocation outcome.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InterceptorInvocationResult.Outcome
getOutcome()
Get the outcome of the interceptor invocation.
-
-
-
Method Detail
-
getOutcome
public final InterceptorInvocationResult.Outcome getOutcome()
Get the outcome of the interceptor invocation.- Returns:
- the outcome.
-
-