| | |
| | | public String lastChangeAuthor;
|
| | | public boolean hasCommits;
|
| | | public boolean showRemoteBranches;
|
| | | public boolean useTickets;
|
| | | public boolean useDocs;
|
| | | public boolean useIncrementalPushTags;
|
| | | public String incrementalPushTagPrefix;
|
| | | public AccessRestrictionType accessRestriction;
|
| | | public AuthorizationControl authorizationControl;
|
| | | public boolean allowAuthenticated;
|
| | | public boolean isFrozen;
|
| | | public boolean showReadme;
|
| | | public FederationStrategy federationStrategy;
|
| | | public List<String> federationSets;
|
| | | public boolean isFederated;
|
| | |
| | | public boolean skipSummaryMetrics;
|
| | | public String frequency;
|
| | | public boolean isBare;
|
| | | public boolean isMirror;
|
| | | public String origin;
|
| | | public String HEAD;
|
| | | public List<String> availableRefs;
|
| | |
| | | public int maxActivityCommits;
|
| | | public List<String> metricAuthorExclusions;
|
| | | public CommitMessageRenderer commitMessageRenderer;
|
| | | public boolean acceptNewPatchsets;
|
| | | public boolean acceptNewTickets;
|
| | | public boolean requireApproval; |
| | | public String mergeTo;
|
| | |
|
| | | public transient boolean isCollectingGarbage;
|
| | | public Date lastGC;
|
| | |
| | | this.projectPath = StringUtils.getFirstPathElement(name);
|
| | | this.owners = new ArrayList<String>();
|
| | | this.isBare = true;
|
| | | this.acceptNewTickets = true;
|
| | | this.acceptNewPatchsets = true;
|
| | |
|
| | | addOwner(owner);
|
| | | }
|
| | |
| | |
|
| | | public void resetDisplayName() {
|
| | | displayName = null;
|
| | | }
|
| | |
|
| | | public String getRID() {
|
| | | return StringUtils.getSHA1(name);
|
| | | }
|
| | |
|
| | | @Override
|
| | |
| | | clone.accessRestriction = AccessRestrictionType.PUSH;
|
| | | clone.authorizationControl = AuthorizationControl.NAMED;
|
| | | clone.federationStrategy = federationStrategy;
|
| | | clone.showReadme = showReadme;
|
| | | clone.showRemoteBranches = false;
|
| | | clone.allowForks = false;
|
| | | clone.useDocs = useDocs;
|
| | | clone.useTickets = useTickets;
|
| | | clone.acceptNewPatchsets = false;
|
| | | clone.acceptNewTickets = false; |
| | | clone.skipSizeCalculation = skipSizeCalculation;
|
| | | clone.skipSummaryMetrics = skipSummaryMetrics;
|
| | | clone.sparkleshareId = sparkleshareId;
|