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(String nodeId, Comment comment)
void
deleteComment(String nodeId, String commentNodeId)
CollectionWithPagingInfo<Comment>
getComments(String nodeId, Paging paging, List<String> include)
void
setCommentService(CommentService commentService)
void
setContentService(ContentService contentService)
void
setNodes(Nodes nodes)
void
setNodeService(NodeService nodeService)
void
setPeople(People people)
void
setTypeConstraint(TypeConstraint typeConstraint)
Comment
updateComment(String nodeId, Comment comment)
-
-
-
Method Detail
-
setTypeConstraint
public void setTypeConstraint(TypeConstraint typeConstraint)
-
setNodes
public void setNodes(Nodes nodes)
-
setNodeService
public void setNodeService(NodeService nodeService)
-
setCommentService
public void setCommentService(CommentService commentService)
-
setContentService
public void setContentService(ContentService contentService)
-
setPeople
public void setPeople(People people)
-
createComment
public Comment createComment(String nodeId, Comment comment)
- Specified by:
createComment
in interfaceComments
-
updateComment
public Comment updateComment(String nodeId, Comment comment)
- Specified by:
updateComment
in interfaceComments
-
getComments
public CollectionWithPagingInfo<Comment> getComments(String nodeId, Paging paging, List<String> include)
- Specified by:
getComments
in interfaceComments
-
deleteComment
public void deleteComment(String nodeId, String commentNodeId)
- Specified by:
deleteComment
in interfaceComments
-
-