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 Integer
getAttachmentCount()
String
getConversationId()
Date
getCreationTime()
Integer
getEventCount()
Integer
getExportedCount()
Integer
getMessageCount()
String
getParticipantIds()
String
getParticipantNames()
Date
getPeriodEndTime()
Date
getPeriodStartTime()
Integer
getSectionId()
void
setAttachmentCount(Integer attachmentCount)
void
setConversationId(String conversationId)
void
setCreationTime(Date creationTime)
void
setEventCount(Integer eventCount)
void
setExportedCount(int exportCount)
void
setMessageCount(Integer messageCount)
void
setParticipantIds(String participantIds)
void
setParticipantNames(String participantNames)
void
setPeriodEndTime(Date periodEndTime)
void
setPeriodStartTime(Date periodStartTime)
void
setSectionId(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)
-
-