Package com.google.gerrit.entities
Class ContributorAgreement
- java.lang.Object
-
- com.google.gerrit.entities.ContributorAgreement
-
- All Implemented Interfaces:
Comparable<ContributorAgreement>
public abstract class ContributorAgreement extends Object implements Comparable<ContributorAgreement>
Portion of aProject
describing a single contributor agreement.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ContributorAgreement.Builder
-
Constructor Summary
Constructors Constructor Description ContributorAgreement()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static ContributorAgreement.Builder
builder(String name)
int
compareTo(ContributorAgreement o)
abstract com.google.common.collect.ImmutableList<PermissionRule>
getAccepted()
abstract String
getAgreementUrl()
abstract GroupReference
getAutoVerify()
abstract String
getDescription()
abstract com.google.common.collect.ImmutableList<String>
getExcludeProjectsRegexes()
abstract com.google.common.collect.ImmutableList<String>
getMatchProjectsRegexes()
abstract String
getName()
abstract ContributorAgreement.Builder
toBuilder()
String
toString()
-
-
-
Method Detail
-
getName
public abstract String getName()
-
getDescription
public abstract String getDescription()
-
getAccepted
public abstract com.google.common.collect.ImmutableList<PermissionRule> getAccepted()
-
getAutoVerify
public abstract GroupReference getAutoVerify()
-
getAgreementUrl
public abstract String getAgreementUrl()
-
getExcludeProjectsRegexes
public abstract com.google.common.collect.ImmutableList<String> getExcludeProjectsRegexes()
-
getMatchProjectsRegexes
public abstract com.google.common.collect.ImmutableList<String> getMatchProjectsRegexes()
-
builder
public static ContributorAgreement.Builder builder(String name)
-
compareTo
public final int compareTo(ContributorAgreement o)
- Specified by:
compareTo
in interfaceComparable<ContributorAgreement>
-
toBuilder
public abstract ContributorAgreement.Builder toBuilder()
-
-