Package com.google.gerrit.server.change
Class NotifyResolver.Result
- java.lang.Object
-
- com.google.gerrit.server.change.NotifyResolver.Result
-
- Enclosing class:
- NotifyResolver
public abstract static class NotifyResolver.Result extends Object
-
-
Constructor Summary
Constructors Constructor Description Result()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract com.google.common.collect.ImmutableSetMultimap<RecipientType,Account.Id>
accounts()
static NotifyResolver.Result
all()
static NotifyResolver.Result
create(NotifyHandling notifyHandling)
static NotifyResolver.Result
create(NotifyHandling handling, com.google.common.collect.ImmutableSetMultimap<RecipientType,Account.Id> recipients)
abstract NotifyHandling
handling()
static NotifyResolver.Result
none()
boolean
shouldNotify()
NotifyResolver.Result
withHandling(NotifyHandling notifyHandling)
-
-
-
Method Detail
-
none
public static NotifyResolver.Result none()
-
all
public static NotifyResolver.Result all()
-
create
public static NotifyResolver.Result create(NotifyHandling notifyHandling)
-
create
public static NotifyResolver.Result create(NotifyHandling handling, com.google.common.collect.ImmutableSetMultimap<RecipientType,Account.Id> recipients)
-
handling
public abstract NotifyHandling handling()
-
accounts
public abstract com.google.common.collect.ImmutableSetMultimap<RecipientType,Account.Id> accounts()
-
withHandling
public NotifyResolver.Result withHandling(NotifyHandling notifyHandling)
-
shouldNotify
public boolean shouldNotify()
-
-