Package com.google.gerrit.entities
Class NotifyConfig
- java.lang.Object
-
- com.google.gerrit.entities.NotifyConfig
-
- All Implemented Interfaces:
Comparable<NotifyConfig>
public abstract class NotifyConfig extends Object implements Comparable<NotifyConfig>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
NotifyConfig.Builder
static class
NotifyConfig.Header
static class
NotifyConfig.NotifyType
-
Constructor Summary
Constructors Constructor Description NotifyConfig()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static NotifyConfig.Builder
builder()
int
compareTo(NotifyConfig o)
boolean
equals(Object obj)
abstract com.google.common.collect.ImmutableSet<Address>
getAddresses()
abstract String
getFilter()
abstract com.google.common.collect.ImmutableSet<GroupReference>
getGroups()
abstract NotifyConfig.Header
getHeader()
abstract String
getName()
abstract com.google.common.collect.ImmutableSet<NotifyConfig.NotifyType>
getNotify()
int
hashCode()
boolean
isNotify(NotifyConfig.NotifyType type)
-
-
-
Method Detail
-
getName
public abstract String getName()
-
getNotify
public abstract com.google.common.collect.ImmutableSet<NotifyConfig.NotifyType> getNotify()
-
getFilter
public abstract String getFilter()
-
getHeader
public abstract NotifyConfig.Header getHeader()
-
getGroups
public abstract com.google.common.collect.ImmutableSet<GroupReference> getGroups()
-
getAddresses
public abstract com.google.common.collect.ImmutableSet<Address> getAddresses()
-
isNotify
public boolean isNotify(NotifyConfig.NotifyType type)
-
builder
public static NotifyConfig.Builder builder()
-
compareTo
public final int compareTo(NotifyConfig o)
- Specified by:
compareTo
in interfaceComparable<NotifyConfig>
-
-