Package jadex.bridge.service.component
Interface IServiceInvocationInterceptor
-
- All Known Implementing Classes:
AbstractApplicableInterceptor
,AbstractLRUApplicableInterceptor
,AbstractMultiInterceptor
,AuthenticationInterceptor
,ComponentThreadInterceptor
,DecouplingInterceptor
,DecouplingReturnInterceptor
,IntelligentProxyInterceptor
,MethodCallListenerInterceptor
,MethodInvocationInterceptor
,NFRequiredServicePropertyProviderInterceptor
,PrePostConditionInterceptor
,ResolveInterceptor
,TracingInterceptor
,ValidationInterceptor
public interface IServiceInvocationInterceptor
Service invocation interceptor interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IFuture<java.lang.Void>
execute(ServiceInvocationContext context)
Execute the interceptor.boolean
isApplicable(ServiceInvocationContext context)
Test if the interceptor is applicable.
-
-
-
Method Detail
-
execute
IFuture<java.lang.Void> execute(ServiceInvocationContext context)
Execute the interceptor.- Parameters:
context
- The invocation context.
-
isApplicable
boolean isApplicable(ServiceInvocationContext context)
Test if the interceptor is applicable.- Returns:
- True, if applicable.
-
-