Class CommentResultWithActions
- java.lang.Object
-
- com.atlassian.confluence.tinymceplugin.rest.entities.CommentResult
-
- com.atlassian.confluence.tinymceplugin.rest.entities.CommentResultWithActions
-
@Immutable public class CommentResultWithActions extends CommentResult
A comment plus the actions appropriate for that comment. It is fairly nasty to have the data and it's actions combined like this but is done because it is more efficient than performing to separate REST calls to add/edit a comment and then retrieve the actions appropriate to that comment.TODO: The code review for this file made some good suggestions. Basically, there should be a ResultWithActions<T> class which composes a <T> (CommentResult in this case). Of course to avoid conditional handling of the resultant JSON in the Javascript code there will need to be a way to expose the nested objects properties on the top level JSON object that is created.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CommentResultWithActions.CommentResultWithActionsBuilder
-
Constructor Summary
Constructors Constructor Description CommentResultWithActions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<UserAction>
getPrimaryActions()
List<UserAction>
getSecondaryActions()
-
Methods inherited from class com.atlassian.confluence.tinymceplugin.rest.entities.CommentResult
getHtml
-
-
-
-
Method Detail
-
getPrimaryActions
public List<UserAction> getPrimaryActions()
-
getSecondaryActions
public List<UserAction> getSecondaryActions()
-
-