Package org.alfresco.rest.api.impl
Class CommentsImpl
- java.lang.Object
-
- org.alfresco.rest.api.impl.CommentsImpl
-
-
Constructor Summary
Constructors Constructor Description CommentsImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Comment
createComment(java.lang.String nodeId, Comment comment)
void
deleteComment(java.lang.String nodeId, java.lang.String commentNodeId)
CollectionWithPagingInfo<Comment>
getComments(java.lang.String nodeId, Paging paging, java.util.List<java.lang.String> include)
void
setCommentService(org.alfresco.repo.forum.CommentService commentService)
void
setContentService(org.alfresco.service.cmr.repository.ContentService contentService)
void
setNodes(Nodes nodes)
void
setNodeService(org.alfresco.service.cmr.repository.NodeService nodeService)
void
setPeople(People people)
void
setTypeConstraint(org.alfresco.util.TypeConstraint typeConstraint)
Comment
updateComment(java.lang.String nodeId, Comment comment)
-
-
-
Method Detail
-
setTypeConstraint
public void setTypeConstraint(org.alfresco.util.TypeConstraint typeConstraint)
-
setNodes
public void setNodes(Nodes nodes)
-
setNodeService
public void setNodeService(org.alfresco.service.cmr.repository.NodeService nodeService)
-
setCommentService
public void setCommentService(org.alfresco.repo.forum.CommentService commentService)
-
setContentService
public void setContentService(org.alfresco.service.cmr.repository.ContentService contentService)
-
setPeople
public void setPeople(People people)
-
createComment
public Comment createComment(java.lang.String nodeId, Comment comment)
- Specified by:
createComment
in interfaceComments
-
updateComment
public Comment updateComment(java.lang.String nodeId, Comment comment)
- Specified by:
updateComment
in interfaceComments
-
getComments
public CollectionWithPagingInfo<Comment> getComments(java.lang.String nodeId, Paging paging, java.util.List<java.lang.String> include)
- Specified by:
getComments
in interfaceComments
-
deleteComment
public void deleteComment(java.lang.String nodeId, java.lang.String commentNodeId)
- Specified by:
deleteComment
in interfaceComments
-
-