Interface ConversationRegistryEntryEntity
-
- All Superinterfaces:
ConversationRegistryEntry
,Entity
,HasRevision
- All Known Implementing Classes:
ConversationRegistryEntryEntityImpl
public interface ConversationRegistryEntryEntity extends ConversationRegistryEntry, Entity, HasRevision
- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setConversationId(String conversationId)
void
setCreationTime(Date creationTime)
void
setGroupId(String groupId)
void
setJoiningTime(Date joiningTime)
void
setLeavingTime(Date leavingTime)
void
setParticipantType(String participantType)
void
setUpdateTime(Date updateTime)
void
setUserId(String userId)
-
Methods inherited from interface com.flowable.engage.engine.impl.conversation.ConversationRegistryEntry
getConversationId, getCreationTime, getGroupId, getId, getJoiningTime, getLeavingTime, getParticipantType, getUpdateTime, getUserId
-
Methods inherited from interface org.flowable.common.engine.impl.persistence.entity.Entity
getId, getIdPrefix, getOriginalPersistentState, getPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setUpdated
-
Methods inherited from interface org.flowable.common.engine.impl.db.HasRevision
getRevision, getRevisionNext, setRevision
-
-
-
-
Method Detail
-
setConversationId
void setConversationId(String conversationId)
-
setUserId
void setUserId(String userId)
-
setGroupId
void setGroupId(String groupId)
-
setParticipantType
void setParticipantType(String participantType)
-
setCreationTime
void setCreationTime(Date creationTime)
-
setUpdateTime
void setUpdateTime(Date updateTime)
-
setJoiningTime
void setJoiningTime(Date joiningTime)
-
setLeavingTime
void setLeavingTime(Date leavingTime)
-
-