Interface ArchiveConversationEventEntity
-
- All Superinterfaces:
Entity,HasRevision
- All Known Implementing Classes:
ArchiveConversationEventEntityImpl
public interface ArchiveConversationEventEntity extends Entity, HasRevision
- Author:
- Simon Amport, Alberto Martinez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegergetAttachmentCount()StringgetConversationId()DategetCreationTime()IntegergetEventCount()IntegergetExportedCount()IntegergetMessageCount()StringgetParticipantIds()StringgetParticipantNames()DategetPeriodEndTime()DategetPeriodStartTime()IntegergetSectionId()voidsetAttachmentCount(Integer attachmentCount)voidsetConversationId(String conversationId)voidsetCreationTime(Date creationTime)voidsetEventCount(Integer eventCount)voidsetExportedCount(int exportCount)voidsetMessageCount(Integer messageCount)voidsetParticipantIds(String participantIds)voidsetParticipantNames(String participantNames)voidsetPeriodEndTime(Date periodEndTime)voidsetPeriodStartTime(Date periodStartTime)voidsetSectionId(Integer sectionId)-
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
-
getConversationId
String getConversationId()
-
setConversationId
void setConversationId(String conversationId)
-
getSectionId
Integer getSectionId()
-
setSectionId
void setSectionId(Integer sectionId)
-
getCreationTime
Date getCreationTime()
-
setCreationTime
void setCreationTime(Date creationTime)
-
getPeriodStartTime
Date getPeriodStartTime()
-
setPeriodStartTime
void setPeriodStartTime(Date periodStartTime)
-
getPeriodEndTime
Date getPeriodEndTime()
-
setPeriodEndTime
void setPeriodEndTime(Date periodEndTime)
-
getParticipantIds
String getParticipantIds()
-
setParticipantIds
void setParticipantIds(String participantIds)
-
getParticipantNames
String getParticipantNames()
-
setParticipantNames
void setParticipantNames(String participantNames)
-
getMessageCount
Integer getMessageCount()
-
setMessageCount
void setMessageCount(Integer messageCount)
-
getEventCount
Integer getEventCount()
-
setEventCount
void setEventCount(Integer eventCount)
-
getAttachmentCount
Integer getAttachmentCount()
-
setAttachmentCount
void setAttachmentCount(Integer attachmentCount)
-
getExportedCount
Integer getExportedCount()
-
setExportedCount
void setExportedCount(int exportCount)
-
-