Set maxObjectSizeLimit from create-project and set-project SSH commands
Change-Id: Ic86015efec549711ab10ae363784746985772d23
This commit is contained in:
@@ -107,6 +107,8 @@ public final class Project {
|
||||
|
||||
protected InheritableBoolean requireChangeID;
|
||||
|
||||
protected String maxObjectSizeLimit;
|
||||
|
||||
protected InheritableBoolean useContentMerge;
|
||||
|
||||
protected String defaultDashboardId;
|
||||
@@ -160,6 +162,10 @@ public final class Project {
|
||||
return requireChangeID;
|
||||
}
|
||||
|
||||
public String getMaxObjectSizeLimit() {
|
||||
return maxObjectSizeLimit;
|
||||
}
|
||||
|
||||
public void setUseContributorAgreements(final InheritableBoolean u) {
|
||||
useContributorAgreements = u;
|
||||
}
|
||||
@@ -176,6 +182,10 @@ public final class Project {
|
||||
requireChangeID = cid;
|
||||
}
|
||||
|
||||
public void setMaxObjectSizeLimit(final String limit) {
|
||||
maxObjectSizeLimit = limit;
|
||||
}
|
||||
|
||||
public SubmitType getSubmitType() {
|
||||
return submitType;
|
||||
}
|
||||
@@ -224,6 +234,7 @@ public final class Project {
|
||||
requireChangeID = update.requireChangeID;
|
||||
submitType = update.submitType;
|
||||
state = update.state;
|
||||
maxObjectSizeLimit = update.maxObjectSizeLimit;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user