Class FlowableAddedParticipantsEventImpl
java.lang.Object
org.flowable.common.engine.impl.event.FlowableEventImpl
com.flowable.engage.engine.delegate.event.impl.FlowableEngageEventImpl
com.flowable.engage.engine.delegate.event.impl.FlowableAddedParticipantsEventImpl
- All Implemented Interfaces:
FlowableAddedParticipantsEvent
,FlowableEngageEvent
,org.flowable.common.engine.api.delegate.event.FlowableEvent
public class FlowableAddedParticipantsEventImpl extends FlowableEngageEventImpl implements FlowableAddedParticipantsEvent
- Author:
- Filip Hrisafov
-
Field Summary
Fields Modifier and Type Field Description protected java.util.Collection<java.lang.String>
addedParticipants
protected Conversation
conversation
protected java.lang.String
userId
-
Constructor Summary
Constructors Constructor Description FlowableAddedParticipantsEventImpl(Conversation conversation, java.util.Collection<java.lang.String> addedParticipants, java.lang.String userId)
-
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 participantsMethods inherited from class com.flowable.engage.engine.delegate.event.impl.FlowableEngageEventImpl
getType
-
Field Details
-
conversation
-
addedParticipants
protected final java.util.Collection<java.lang.String> addedParticipants -
userId
protected final java.lang.String userId
-
-
Constructor Details
-
FlowableAddedParticipantsEventImpl
public FlowableAddedParticipantsEventImpl(Conversation conversation, java.util.Collection<java.lang.String> addedParticipants, java.lang.String userId)
-
-
Method Details
-
getConversation
Description copied from interface:FlowableAddedParticipantsEvent
The conversation with the updated participants.- Specified by:
getConversation
in interfaceFlowableAddedParticipantsEvent
- Returns:
- the conversation that was updated
-
getAddedParticipants
public java.util.Collection<java.lang.String> getAddedParticipants()Description copied from interface:FlowableAddedParticipantsEvent
The ids of the participants that were added to the conversation.- Specified by:
getAddedParticipants
in interfaceFlowableAddedParticipantsEvent
- Returns:
- the ids of the participants that were added
-
getUserId
public java.lang.String getUserId()Description copied from interface:FlowableAddedParticipantsEvent
The id of the user that is doing the adding of the participants- Specified by:
getUserId
in interfaceFlowableAddedParticipantsEvent
- Returns:
- the id of the user that is doing the adding of the participants
-