Interface ServerSideRequestInterceptor
- All Known Implementing Classes:
AbstractRequestInterceptor,AbstractServerSideRequestInterceptor,FlippingServerSideSlowDownByConfigurationInterceptor,MoskitoJourneyInterceptor,ServerSideSlowDownByConfigurationInterceptor,ServerSideSlowDownByPropertyInterceptor,ServerSideSlowDownInterceptor,SinglePhaseInterceptor
public interface ServerSideRequestInterceptor
This interceptor describes an interface that is acting on the server side.
- Version:
- $Id: $Id
- Author:
- lrosenberg
-
Method Summary
Modifier and TypeMethodDescriptionafterServantCall(ServerSideCallContext context, InterceptionContext iContext) Called after the service actually processed the request.beforeServantCall(ServerSideCallContext context, InterceptionContext iContext) Called before any real processing happens on the server side.
-
Method Details
-
beforeServantCall
Called before any real processing happens on the server side.- Parameters:
context- aServerSideCallContextobject.iContext- aInterceptionContextobject.- Returns:
- a
InterceptorResponseobject.
-
afterServantCall
Called after the service actually processed the request. Allows to inspect or modify the answer.- Parameters:
context- aServerSideCallContextobject.iContext- aInterceptionContextobject.- Returns:
- a
InterceptorResponseobject.
-