Interface FlowableAddedParticipantsEvent
- All Superinterfaces:
FlowableEngageEvent
,org.flowable.common.engine.api.delegate.event.FlowableEvent
- All Known Implementing Classes:
FlowableAddedParticipantsEventImpl
public interface FlowableAddedParticipantsEvent extends FlowableEngageEvent
Event fired when participants have been added to a conversation.
- Author:
- Filip Hrisafov
-
Method Summary
Modifier and Type Method Description java.util.Collection<java.lang.String>
getAddedParticipants()
The ids of the participants that were added to the conversation.Conversation
getConversation()
The conversation with the updated participants.java.lang.String
getUserId()
The id of the user that is doing the adding of the participants
-
Method Details
-
getConversation
Conversation getConversation()The conversation with the updated participants.- Returns:
- the conversation that was updated
-
getAddedParticipants
java.util.Collection<java.lang.String> getAddedParticipants()The ids of the participants that were added to the conversation.- Returns:
- the ids of the participants that were added
-
getUserId
java.lang.String getUserId()The id of the user that is doing the adding of the participants- Returns:
- the id of the user that is doing the adding of the participants
-