Interface FlowableRemovedParticipantsEvent
-
- All Superinterfaces:
FlowableEngageEvent
,FlowableEvent
- All Known Implementing Classes:
FlowableRemovedParticipantsEventImpl
public interface FlowableRemovedParticipantsEvent extends FlowableEngageEvent
Event fired when participants have been removed from a conversation.- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Conversation
getConversation()
The conversation with the removed participants.Collection<String>
getRemovedParticipants()
The ids of the participants that were removed from the conversation.String
getUserId()
The id of the user that is doing the removing of the participants-
Methods inherited from interface org.flowable.common.engine.api.delegate.event.FlowableEvent
getType
-
-
-
-
Method Detail
-
getConversation
Conversation getConversation()
The conversation with the removed participants.- Returns:
- the conversation that was updated
-
getRemovedParticipants
Collection<String> getRemovedParticipants()
The ids of the participants that were removed from the conversation. Nevernull
or empty.- Returns:
- the ids of the removed participants
-
getUserId
String getUserId()
The id of the user that is doing the removing of the participants- Returns:
- the id of the user that is doing the removing of the participants
-
-