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 CommonEngineServiceImpl<PlatformEngineConfiguration> implements CommentService
-
-
Field Summary
-
Fields inherited from class org.flowable.common.engine.impl.service.CommonEngineServiceImpl
commandExecutor
-
Fields inherited from class org.flowable.common.engine.impl.service.CommonServiceImpl
configuration
-
-
Constructor Summary
Constructors Constructor Description CommentServiceImpl(PlatformEngineConfiguration platformEngineConfiguration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CommentBuildercreateCommentBuilder()CommentQuerycreateCommentQuery()voiddeleteComment(String id)CommentfindById(String id)List<Comment>findByScopeIdAndScopeType(String scopeId, String scopeType)CommentupdateComment(String commentId, String content)-
Methods inherited from class org.flowable.common.engine.impl.service.CommonEngineServiceImpl
getCommandExecutor, setCommandExecutor
-
Methods inherited from class org.flowable.common.engine.impl.service.CommonServiceImpl
getConfiguration
-
-
-
-
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(String id)
- Specified by:
findByIdin interfaceCommentService
-
findByScopeIdAndScopeType
public List<Comment> findByScopeIdAndScopeType(String scopeId, String scopeType)
- Specified by:
findByScopeIdAndScopeTypein interfaceCommentService
-
updateComment
public Comment updateComment(String commentId, String content)
- Specified by:
updateCommentin interfaceCommentService
-
deleteComment
public void deleteComment(String id)
- Specified by:
deleteCommentin interfaceCommentService
-
-