Interface InboundMessageAccountService
-
- All Known Implementing Classes:
EventRegistryInboundMessageAccountService
,LoggingInboundMessageAccountService
public interface InboundMessageAccountService
Service for handling inbound messages for a particular account- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
messageReceivedInactiveAccount(InboundMessage inboundMessage, UserAccount userAccount)
A new inbound message has been received and the user account is no activevoid
messageReceivedNoAccount(InboundMessage inboundMessage)
A new inbound message has been received and it is not linked with an account
-
-
-
Method Detail
-
messageReceivedNoAccount
void messageReceivedNoAccount(InboundMessage inboundMessage)
A new inbound message has been received and it is not linked with an account- Parameters:
inboundMessage
- the received inbound message
-
messageReceivedInactiveAccount
void messageReceivedInactiveAccount(InboundMessage inboundMessage, UserAccount userAccount)
A new inbound message has been received and the user account is no active- Parameters:
inboundMessage
- the received inbound messageuserAccount
- the account of the user that send the message (nevernull
)
-
-