Class LoggingInboundMessageAccountService
- java.lang.Object
-
- com.flowable.engage.external.system.service.LoggingInboundMessageAccountService
-
- All Implemented Interfaces:
InboundMessageAccountService
public class LoggingInboundMessageAccountService extends Object implements InboundMessageAccountService
- Author:
- Filip Hrisafov
-
-
Field Summary
Fields Modifier and Type Field Description protected org.slf4j.Loggerlogger
-
Constructor Summary
Constructors Constructor Description LoggingInboundMessageAccountService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidmessageReceivedInactiveAccount(InboundMessage inboundMessage, UserAccount userAccount)A new inbound message has been received and the user account is no activevoidmessageReceivedNoAccount(InboundMessage inboundMessage)A new inbound message has been received and it is not linked with an account
-
-
-
Method Detail
-
messageReceivedNoAccount
public void messageReceivedNoAccount(InboundMessage inboundMessage)
Description copied from interface:InboundMessageAccountServiceA new inbound message has been received and it is not linked with an account- Specified by:
messageReceivedNoAccountin interfaceInboundMessageAccountService- Parameters:
inboundMessage- the received inbound message
-
messageReceivedInactiveAccount
public void messageReceivedInactiveAccount(InboundMessage inboundMessage, UserAccount userAccount)
Description copied from interface:InboundMessageAccountServiceA new inbound message has been received and the user account is no active- Specified by:
messageReceivedInactiveAccountin interfaceInboundMessageAccountService- Parameters:
inboundMessage- the received inbound messageuserAccount- the account of the user that send the message (nevernull)
-
-