public class ContributorAgreement extends Object implements Comparable<ContributorAgreement>
Project
describing a single contributor agreement.Modifier and Type | Field and Description |
---|---|
protected List<PermissionRule> |
accepted |
protected String |
agreementUrl |
protected GroupReference |
autoVerify |
protected String |
description |
protected List<String> |
excludeProjectsRegexes |
protected List<String> |
matchProjectsRegexes |
protected String |
name |
Modifier | Constructor and Description |
---|---|
protected |
ContributorAgreement() |
|
ContributorAgreement(String name) |
Modifier and Type | Method and Description |
---|---|
int |
compareTo(ContributorAgreement o) |
List<PermissionRule> |
getAccepted() |
String |
getAgreementUrl() |
GroupReference |
getAutoVerify() |
String |
getDescription() |
List<String> |
getExcludeProjectsRegexes() |
List<String> |
getMatchProjectsRegexes() |
String |
getName() |
void |
setAccepted(List<PermissionRule> accepted) |
void |
setAgreementUrl(String agreementUrl) |
void |
setAutoVerify(GroupReference autoVerify) |
void |
setDescription(String description) |
void |
setExcludeProjectsRegexes(List<String> excludeProjectsRegexes) |
void |
setMatchProjectsRegexes(List<String> matchProjectsRegexes) |
void |
setName(String name) |
String |
toString() |
protected String name
protected String description
protected List<PermissionRule> accepted
protected GroupReference autoVerify
protected String agreementUrl
protected ContributorAgreement()
public ContributorAgreement(String name)
public String getName()
public void setName(String name)
public String getDescription()
public void setDescription(String description)
public List<PermissionRule> getAccepted()
public void setAccepted(List<PermissionRule> accepted)
public GroupReference getAutoVerify()
public void setAutoVerify(GroupReference autoVerify)
public String getAgreementUrl()
public void setAgreementUrl(String agreementUrl)
public void setExcludeProjectsRegexes(List<String> excludeProjectsRegexes)
public int compareTo(ContributorAgreement o)
compareTo
in interface Comparable<ContributorAgreement>