Interface InboundStatusHandler
-
- All Known Implementing Classes:
BaseInboundStatusHandler
,LineInboundStatusHandler
,WeChatInboundStatusHandler
,WhatsAppInboundStatusHandler
public interface InboundStatusHandler
Handler for inbound statuses from the external adapters- 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
handleStatus(InboundStatusDto status)
Handle the received status 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
-
handleStatus
void handleStatus(InboundStatusDto status)
Handle the received status from the external adapter- Parameters:
status
- the status from the external adapter
-
-