]> source.dussan.org Git - sonarqube.git/blob
de4cc6ee2c839cb1a4a0e1feac814e61746dd983
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2017 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
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.
10  *
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.
15  *
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.
19  */
20 package org.sonar.server.computation.task.projectanalysis.analysis;
21
22 import java.util.Map;
23 import javax.annotation.Nullable;
24 import org.sonar.server.qualityprofile.QualityProfile;
25
26 public interface MutableAnalysisMetadataHolder extends AnalysisMetadataHolder {
27
28   /**
29    * @throws IllegalStateException if the organization uuid has already been set
30    */
31   MutableAnalysisMetadataHolder setOrganization(Organization organization);
32
33   /**
34    * @throws IllegalStateException if the analysis uuid has already been set
35    */
36   MutableAnalysisMetadataHolder setUuid(String uuid);
37
38   /**
39    * @throws IllegalStateException if the analysis date has already been set
40    */
41   MutableAnalysisMetadataHolder setAnalysisDate(long date);
42
43   /**
44    * @throws IllegalStateException if it has already been set
45    */
46   MutableAnalysisMetadataHolder setIncrementalAnalysis(boolean isIncrementalAnalysis);
47
48   /**
49    * @throws IllegalStateException if baseAnalysis has already been set
50    */
51   MutableAnalysisMetadataHolder setBaseAnalysis(@Nullable Analysis baseAnalysis);
52
53   /**
54    * @throws IllegalStateException if cross project duplication flag has already been set
55    */
56   MutableAnalysisMetadataHolder setCrossProjectDuplicationEnabled(boolean isCrossProjectDuplicationEnabled);
57
58   /**
59    * @throws IllegalStateException if branch has already been set
60    */
61   MutableAnalysisMetadataHolder setBranch(@Nullable Branch branch);
62
63   /**
64    * @throws IllegalStateException if project has already been set
65    */
66   MutableAnalysisMetadataHolder setProject(Project project);
67
68   /**
69    * @throws IllegalStateException if root component ref has already been set
70    */
71   MutableAnalysisMetadataHolder setRootComponentRef(int rootComponentRef);
72
73   /**
74    * @throws IllegalStateException if QProfile by language has already been set
75    */
76   MutableAnalysisMetadataHolder setQProfilesByLanguage(Map<String, QualityProfile> qprofilesByLanguage);
77
78   /**
79    * @throws IllegalStateException if Plugins by key has already been set
80    */
81   MutableAnalysisMetadataHolder setScannerPluginsByKey(Map<String, ScannerPlugin> pluginsByKey);
82 }