Interface InboundErrorHandler
-
- All Known Implementing Classes:
BaseInboundErrorHandler
,LoggingInboundErrorHandler
public interface InboundErrorHandler
Handler for inbound errors from an external adapter.- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getExternalSystemId()
Returns the id of the external system implemented by this handler.void
handleError(InboundErrorDto error)
Handle the received error from the external adapter
-
-
-
Method Detail
-
getExternalSystemId
String getExternalSystemId()
Returns the id of the external system implemented by this handler.- Returns:
- the external system id implemented by this handler
-
handleError
void handleError(InboundErrorDto error)
Handle the received error from the external adapter- Parameters:
error
- the error from the external adapter
-
-