public class DefaultCommentManager extends DefaultContentEntityManager implements CommentManagerInternal
attachmentManager, contentEntityObjectDao, eventManager, hibernateSessionManager, indexer, labelManager, linkManager
ITERATE_ALL
Constructor and Description |
---|
DefaultCommentManager(CommentDao commentDao) |
Modifier and Type | Method and Description |
---|---|
Comment |
addCommentToObject(ContentEntityObject ceo,
Comment parent,
java.lang.String content) |
Comment |
addCommentToObject(ContentEntityObject ceo,
Comment parent,
java.lang.String content,
NewCommentDeduplicator commentDeduplicator)
Add a new comment if the given deduplicator determines that it's not a duplicate, or just return the existing duplicate otherwise.
|
Comment |
addCommentToPage(AbstractPage page,
Comment parent,
java.lang.String content) |
java.util.Map<com.atlassian.bonnie.Searchable,java.lang.Integer> |
countComments(java.util.Collection<? extends com.atlassian.bonnie.Searchable> searchables) |
int |
countComments(com.atlassian.bonnie.Searchable searchable) |
PageResponse<Comment> |
getChildren(Comment comment,
LimitedRequest pageRequest,
Depth depth)
Returns the children of a comment, limited to the pagination requested.
|
Comment |
getComment(long id) |
java.util.List<Comment> |
getPageComments(long pageId,
java.util.Date since)
The service get all page comments (page level comments and inline comments)
|
java.util.List<Comment> |
getPageComments(long pageId,
java.util.Date since,
java.lang.String ignoreUsername)
The service get all page comments (page level comments and inline comments) from a particular date except for comments by the given username.
|
PageResponse<Comment> |
getPageComments(long pageId,
LimitedRequest pageRequest,
Depth depth)
Returns the children of a Page or Blogpost, limited to the pagination requested.
|
java.util.List<Comment> |
getPageLevelComments(long pageId,
java.util.Date since)
The service get all page level comments
|
java.util.Iterator |
getRecentlyUpdatedComments(Space space,
int maxResults) |
protected void |
publishCreateEvent(ContentEntityObject obj)
This method publishes
*CreateEvents s. |
protected void |
publishCreateEvent(ContentEntityObject obj,
SaveContext saveContext) |
protected void |
publishRemoveEvent(ContentEntityObject obj)
This method publishes
*RemoveEvent s. |
protected void |
publishUpdateEvent(ContentEntityObject obj,
ContentEntityObject origObj,
SaveContext saveContext)
This method publishes
*UpdateEvent s. |
void |
removeCommentFromObject(long id) |
void |
removeCommentFromPage(long id) |
void |
setCommentDao(CommentDao commentDao) |
void |
updateCommentContent(Comment comment,
java.lang.String content) |
getBodyContentForRevert, getById, getById, getEventManager, getNextVersion, getOtherVersion, getPageDao, getPreviousVersion, getRecentlyAddedEntities, getRecentlyModifiedEntities, getRecentlyModifiedEntitiesForUser, getRecentlyModifiedForChangeDigest, getVersionHistorySummaries, refreshContentEntity, removeContentEntity, removeHistoricalVersion, revertContentEntityBackToVersion, saveContentEntity, saveContentEntity, saveNewVersion, saveNewVersion, setAttachmentManager, setContentEntityObjectDao, setEventManager, setHibernateSessionManager, setIndexer, setLabelManager, setLinkManager, suppressNotificationsOnEventIfRequired, updateContentLinkingTo, updateContentLinkingTo, updateOutgoingLinksInContent, updateOutgoingLinksInContent, updateSingleContentLinkinTo, updateSingleContentLinkinTo, updateSingleContentLinkinTo
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getById, getNextVersion, getOtherVersion, getPreviousVersion, getRecentlyAddedEntities, getRecentlyModifiedEntities, getRecentlyModifiedEntitiesForUser, getRecentlyModifiedForChangeDigest, getVersionHistorySummaries, refreshContentEntity, removeContentEntity, removeHistoricalVersion, revertContentEntityBackToVersion, saveContentEntity, saveContentEntity, saveNewVersion, saveNewVersion, setEventManager, updateContentLinkingTo, updateOutgoingLinksInContent, updateSingleContentLinkinTo, updateSingleContentLinkinTo
public DefaultCommentManager(CommentDao commentDao)
public void setCommentDao(CommentDao commentDao)
public Comment getComment(long id)
getComment
in interface CommentManager
public Comment addCommentToPage(AbstractPage page, Comment parent, java.lang.String content)
addCommentToPage
in interface CommentManager
public Comment addCommentToObject(ContentEntityObject ceo, Comment parent, java.lang.String content)
addCommentToObject
in interface CommentManager
public Comment addCommentToObject(ContentEntityObject ceo, Comment parent, java.lang.String content, NewCommentDeduplicator commentDeduplicator)
CommentManager
addCommentToObject
in interface CommentManager
public void updateCommentContent(Comment comment, java.lang.String content)
updateCommentContent
in interface CommentManager
public void removeCommentFromPage(long id)
removeCommentFromPage
in interface CommentManager
public void removeCommentFromObject(long id)
removeCommentFromObject
in interface CommentManager
public java.util.Iterator getRecentlyUpdatedComments(Space space, int maxResults)
getRecentlyUpdatedComments
in interface CommentManager
public java.util.List<Comment> getPageComments(long pageId, java.util.Date since)
CommentManager
getPageComments
in interface CommentManager
pageId
- page id of commentsince
- comment timepublic java.util.List<Comment> getPageComments(long pageId, java.util.Date since, java.lang.String ignoreUsername)
CommentManager
getPageComments
in interface CommentManager
pageId
- page id of commentsince
- comment timeignoreUsername
- username exceptedpublic PageResponse<Comment> getPageComments(long pageId, LimitedRequest pageRequest, Depth depth)
CommentManagerInternal
getPageComments
in interface CommentManagerInternal
pageId
- the id of the page or blogpost to find children forpageRequest
- the pagination requesteddepth
- the depth to return children topublic java.util.Map<com.atlassian.bonnie.Searchable,java.lang.Integer> countComments(java.util.Collection<? extends com.atlassian.bonnie.Searchable> searchables)
countComments
in interface CommentManager
public int countComments(com.atlassian.bonnie.Searchable searchable)
countComments
in interface CommentManager
public PageResponse<Comment> getChildren(Comment comment, LimitedRequest pageRequest, Depth depth)
CommentManagerInternal
getChildren
in interface CommentManagerInternal
comment
- the comment to find children forpageRequest
- the pagination requesteddepth
- the depth to return children toprotected void publishCreateEvent(ContentEntityObject obj)
DefaultContentEntityManager
*CreateEvents
s.
Specific content entity object manager that need to publish those events should override this method.publishCreateEvent
in class DefaultContentEntityManager
obj
- the created content entity objectprotected void publishCreateEvent(ContentEntityObject obj, SaveContext saveContext)
publishCreateEvent
in class DefaultContentEntityManager
protected void publishRemoveEvent(ContentEntityObject obj)
DefaultContentEntityManager
*RemoveEvent
s.
Specific content entity object manager that need to publish those events should override this method.publishRemoveEvent
in class DefaultContentEntityManager
obj
- the removed content entity objectprotected void publishUpdateEvent(ContentEntityObject obj, ContentEntityObject origObj, SaveContext saveContext)
DefaultContentEntityManager
*UpdateEvent
s.
Specific content entity object manager that need to publish those events should override this method.publishUpdateEvent
in class DefaultContentEntityManager
obj
- the updated content entity objectorigObj
- the old version of the content entity object, for history purposesaveContext
- the associated SaveContext
public java.util.List<Comment> getPageLevelComments(long pageId, java.util.Date since)
CommentManager
getPageLevelComments
in interface CommentManager
pageId
- page id of commentsince
- comment timeCopyright © 2003-2014 Atlassian. All Rights Reserved.