Package com.atlassian.jira.rest.v2.issue
Class WatchersBean
java.lang.Object
com.atlassian.jira.rest.v2.issue.WatchersBean
This bean describes the watcher list. Apart from an expandable list of watchers, this bean also holds a link to the
watchers sub-resource, and a boolean indicating whether the current user is watching the issue.
- Since:
- v4.2
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionWatchersBean(String selfUri, Boolean watching, int count) WatchersBean(String selfUri, Boolean watching, List<UserJsonBean> userBeans, int count) Creates a new SimpleListWrapper backed by the given list and returns at most maxResults items to the client. -
Method Summary
-
Constructor Details
-
WatchersBean
Creates a new SimpleListWrapper backed by the given list and returns at most maxResults items to the client.- Parameters:
selfUri- the URIwatching- a Boolean indicating whether the user is watching the issueuserBeans- a Collectioncount- the number of watcher (if the user does not have View Watchers permission then userBeans will be empty but count can be non-zero, so we can't just use userBeans.size())
-
WatchersBean
-