3 * Copyright (C) 2009-2017 SonarSource SA
4 * mailto:info AT sonarsource DOT com
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 3 of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 package org.sonar.server.computation.task.projectanalysis.analysis;
23 import javax.annotation.Nullable;
24 import org.sonar.server.qualityprofile.QualityProfile;
26 public interface MutableAnalysisMetadataHolder extends AnalysisMetadataHolder {
29 * @throws IllegalStateException if the organization uuid has already been set
31 MutableAnalysisMetadataHolder setOrganization(Organization organization);
34 * @throws IllegalStateException if the analysis uuid has already been set
36 MutableAnalysisMetadataHolder setUuid(String uuid);
39 * @throws IllegalStateException if the analysis date has already been set
41 MutableAnalysisMetadataHolder setAnalysisDate(long date);
44 * @throws IllegalStateException if it has already been set
46 MutableAnalysisMetadataHolder setIncrementalAnalysis(boolean isIncrementalAnalysis);
49 * @throws IllegalStateException if baseAnalysis has already been set
51 MutableAnalysisMetadataHolder setBaseAnalysis(@Nullable Analysis baseAnalysis);
54 * @throws IllegalStateException if cross project duplication flag has already been set
56 MutableAnalysisMetadataHolder setCrossProjectDuplicationEnabled(boolean isCrossProjectDuplicationEnabled);
59 * @throws IllegalStateException if branch has already been set
61 MutableAnalysisMetadataHolder setBranch(@Nullable Branch branch);
64 * @throws IllegalStateException if project has already been set
66 MutableAnalysisMetadataHolder setProject(Project project);
69 * @throws IllegalStateException if root component ref has already been set
71 MutableAnalysisMetadataHolder setRootComponentRef(int rootComponentRef);
74 * @throws IllegalStateException if QProfile by language has already been set
76 MutableAnalysisMetadataHolder setQProfilesByLanguage(Map<String, QualityProfile> qprofilesByLanguage);
79 * @throws IllegalStateException if Plugins by key has already been set
81 MutableAnalysisMetadataHolder setScannerPluginsByKey(Map<String, ScannerPlugin> pluginsByKey);