public class

WatchersBean

extends Object
java.lang.Object
   ↳ com.atlassian.jira.rest.v2.issue.WatchersBean

Class Overview

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.

Summary

Nested Classes
class WatchersBean.Builder  
Public Constructors
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.
WatchersBean(String selfUri, Boolean watching, int count)
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public 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.

Parameters
selfUri the URI
watching a Boolean indicating whether the user is watching the issue
userBeans a Collection
count 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())

public WatchersBean (String selfUri, Boolean watching, int count)