Set maxObjectSizeLimit from create-project and set-project SSH commands

Change-Id: Ic86015efec549711ab10ae363784746985772d23
This commit is contained in:
Sasa Zivkov
2013-07-01 15:01:59 +02:00
parent 5a708a8b45
commit a1ec941227
8 changed files with 71 additions and 1 deletions

View File

@@ -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;
}
/**