Package com.google.gerrit.server.mail
Class MailUtil.MailRecipients
- java.lang.Object
-
- com.google.gerrit.server.mail.MailUtil.MailRecipients
-
-
Constructor Summary
Constructors Constructor Description MailRecipients()
MailRecipients(Set<Account.Id> reviewers, Set<Account.Id> cc)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(MailUtil.MailRecipients recipients)
Set<Account.Id>
getAll()
Set<Account.Id>
getCcOnly()
Set<Account.Id>
getReviewers()
void
remove(Account.Id toRemove)
-
-
-
Constructor Detail
-
MailRecipients
public MailRecipients()
-
MailRecipients
public MailRecipients(Set<Account.Id> reviewers, Set<Account.Id> cc)
-
-
Method Detail
-
add
public void add(MailUtil.MailRecipients recipients)
-
remove
public void remove(Account.Id toRemove)
-
getReviewers
public Set<Account.Id> getReviewers()
-
getCcOnly
public Set<Account.Id> getCcOnly()
-
getAll
public Set<Account.Id> getAll()
-
-