Interface CommentEntity
-
- All Superinterfaces:
Comment
,org.flowable.common.engine.impl.persistence.entity.Entity
- All Known Implementing Classes:
PlatformCommentEntityImpl
public interface CommentEntity extends Comment, org.flowable.common.engine.impl.persistence.entity.Entity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setContent(java.lang.String content)
void
setCreationTime(java.util.Date creationTime)
void
setScopeId(java.lang.String scopeId)
void
setScopeType(java.lang.String scopeType)
void
setUpdateTime(java.util.Date updateTime)
void
setUserId(java.lang.String userId)
-
Methods inherited from interface com.flowable.platform.api.comment.Comment
getContent, getCreationTime, getId, getScopeId, getScopeType, getUpdateTime, getUserId
-
-
-
-
Method Detail
-
setContent
void setContent(java.lang.String content)
-
setUserId
void setUserId(java.lang.String userId)
-
setScopeId
void setScopeId(java.lang.String scopeId)
-
setScopeType
void setScopeType(java.lang.String scopeType)
-
setUpdateTime
void setUpdateTime(java.util.Date updateTime)
-
setCreationTime
void setCreationTime(java.util.Date creationTime)
-
-