Interface ArchiveJobEventEntity
-
- All Superinterfaces:
Entity
,HasRevision
- All Known Implementing Classes:
ArchiveJobEventEntityImpl
public interface ArchiveJobEventEntity extends Entity, HasRevision
- Author:
- Simon Amport
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getConversationCount()
Date
getCreationTime()
long
getDataCount()
Date
getEndTime()
long
getParticipantCount()
Date
getStartTime()
void
setConversationCount(long conversationCount)
void
setCreationTime(Date creationTime)
void
setDataCount(long dataCount)
void
setEndTime(Date endTime)
void
setParticipantCount(long participantCount)
void
setStartTime(Date startTime)
-
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
-
getCreationTime
Date getCreationTime()
-
setCreationTime
void setCreationTime(Date creationTime)
-
getStartTime
Date getStartTime()
-
setStartTime
void setStartTime(Date startTime)
-
getEndTime
Date getEndTime()
-
setEndTime
void setEndTime(Date endTime)
-
getConversationCount
long getConversationCount()
-
setConversationCount
void setConversationCount(long conversationCount)
-
getParticipantCount
long getParticipantCount()
-
setParticipantCount
void setParticipantCount(long participantCount)
-
getDataCount
long getDataCount()
-
setDataCount
void setDataCount(long dataCount)
-
-