Interface EAMInterceptor
public interface EAMInterceptor
Interception of calls to EAM services
-
Method Summary
Modifier and TypeMethodDescriptionvoidafterError(EAM_OPERATION operation, EAMRequestData requestData, EAMErrorData errorData, EAMExtractedData extractedData) Callback executed after the actual call to every EAM service, in case of errorvoidafterSuccess(EAM_OPERATION operation, EAMRequestData requestData, EAMResponseData responseData, EAMExtractedData extractedData) Callback executed after the call to every EAM service, in case of successvoidbefore(EAM_OPERATION operation, EAMRequestData requestData) Callback executed before the actual call to every EAM service
-
Method Details
-
before
Callback executed before the actual call to every EAM service- Parameters:
operation- Operation to executerequestData- Request parameters
-
afterSuccess
void afterSuccess(EAM_OPERATION operation, EAMRequestData requestData, EAMResponseData responseData, EAMExtractedData extractedData) Callback executed after the call to every EAM service, in case of success- Parameters:
operation- Operation to executerequestData- Request parametersresponseData- Response parametersextractedData- Data extracted from the response
-
afterError
void afterError(EAM_OPERATION operation, EAMRequestData requestData, EAMErrorData errorData, EAMExtractedData extractedData) Callback executed after the actual call to every EAM service, in case of error- Parameters:
operation- Operation to executerequestData- Request parameterserrorData- Error detailsextractedData- Data extracted from the response
-