Class CommentServiceImpl
- java.lang.Object
-
- org.flowable.common.engine.impl.service.CommonServiceImpl<C>
-
- org.flowable.common.engine.impl.service.CommonEngineServiceImpl<PlatformEngineConfiguration>
-
- com.flowable.platform.engine.impl.comment.CommentServiceImpl
-
- All Implemented Interfaces:
CommentService
public class CommentServiceImpl extends org.flowable.common.engine.impl.service.CommonEngineServiceImpl<PlatformEngineConfiguration> implements CommentService
-
-
Constructor Summary
Constructors Constructor Description CommentServiceImpl(PlatformEngineConfiguration platformEngineConfiguration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CommentBuildercreateCommentBuilder()CommentQuerycreateCommentQuery()voiddeleteComment(java.lang.String id)CommentfindById(java.lang.String id)java.util.List<Comment>findByScopeIdAndScopeType(java.lang.String scopeId, java.lang.String scopeType)CommentupdateComment(java.lang.String commentId, java.lang.String content)-
Methods inherited from class org.flowable.common.engine.impl.service.CommonEngineServiceImpl
getCommandExecutor, setCommandExecutor
-
-
-
-
Constructor Detail
-
CommentServiceImpl
public CommentServiceImpl(PlatformEngineConfiguration platformEngineConfiguration)
-
-
Method Detail
-
createCommentQuery
public CommentQuery createCommentQuery()
- Specified by:
createCommentQueryin interfaceCommentService
-
createCommentBuilder
public CommentBuilder createCommentBuilder()
- Specified by:
createCommentBuilderin interfaceCommentService
-
findById
public Comment findById(java.lang.String id)
- Specified by:
findByIdin interfaceCommentService
-
findByScopeIdAndScopeType
public java.util.List<Comment> findByScopeIdAndScopeType(java.lang.String scopeId, java.lang.String scopeType)
- Specified by:
findByScopeIdAndScopeTypein interfaceCommentService
-
updateComment
public Comment updateComment(java.lang.String commentId, java.lang.String content)
- Specified by:
updateCommentin interfaceCommentService
-
deleteComment
public void deleteComment(java.lang.String id)
- Specified by:
deleteCommentin interfaceCommentService
-
-