Uses of Interface
com.atlassian.confluence.pages.NewCommentDeduplicator
-
Packages that use NewCommentDeduplicator Package Description com.atlassian.confluence.content.service.comment com.atlassian.confluence.impl.content com.atlassian.confluence.pages -
-
Uses of NewCommentDeduplicator in com.atlassian.confluence.content.service.comment
Constructors in com.atlassian.confluence.content.service.comment with parameters of type NewCommentDeduplicator Constructor Description CreateCommentCommandImpl(PermissionManager permissionManager, ContentEntityManager contentManager, CommentManager commentManager, long contentId, long parentCommentId, String commentBody, NewCommentDeduplicator commentDeduplicator)
CreateCommentFromEditorCommand(PermissionManager permissionManager, ContentEntityManager contentManager, CommentManager commentManager, EditorConverter editConverter, long pageId, long parentCommentId, String commentBody, NewCommentDeduplicator commentDeduplicator)
-
Uses of NewCommentDeduplicator in com.atlassian.confluence.impl.content
Methods in com.atlassian.confluence.impl.content with parameters of type NewCommentDeduplicator Modifier and Type Method Description @NonNull Comment
DefaultCommentManager. addCommentToObject(ContentEntityObject ceo, Comment parent, String content, @Nullable NewCommentDeduplicator commentDeduplicator)
-
Uses of NewCommentDeduplicator in com.atlassian.confluence.pages
Classes in com.atlassian.confluence.pages that implement NewCommentDeduplicator Modifier and Type Class Description class
SubmissionTokenCommentDeduplicator
ANewCommentDeduplicator
which uses a submission token, represented by a UUID, to determine if a new submitted comment is a duplicate of any existing comments.Methods in com.atlassian.confluence.pages with parameters of type NewCommentDeduplicator Modifier and Type Method Description @NonNull Comment
CommentManager. addCommentToObject(ContentEntityObject ceo, @Nullable Comment parent, 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.
-