]> source.dussan.org Git - sonarqube.git/blob
17c5350ecb9c7d883d5ca3a37c7b317514941112
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2016 SonarSource SA
4  * mailto:contact 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.CheckForNull;
24 import javax.annotation.Nullable;
25 import org.junit.rules.ExternalResource;
26 import org.sonar.server.computation.task.projectanalysis.qualityprofile.QualityProfile;
27
28 public class MutableAnalysisMetadataHolderRule extends ExternalResource implements MutableAnalysisMetadataHolder {
29
30   private AnalysisMetadataHolderImpl delegate = new AnalysisMetadataHolderImpl();
31
32   @Override
33   protected void after() {
34     delegate = new AnalysisMetadataHolderImpl();
35   }
36
37   @Override
38   public String getUuid() {
39     return delegate.getUuid();
40   }
41
42   public MutableAnalysisMetadataHolderRule setUuid(String s) {
43     delegate.setUuid(s);
44     return this;
45   }
46
47   @Override
48   public long getAnalysisDate() {
49     return delegate.getAnalysisDate();
50   }
51
52   public MutableAnalysisMetadataHolderRule setAnalysisDate(long date) {
53     delegate.setAnalysisDate(date);
54     return this;
55   }
56
57   @Override
58   public boolean isFirstAnalysis() {
59     return delegate.isFirstAnalysis();
60   }
61
62   @Override
63   public MutableAnalysisMetadataHolderRule setBaseAnalysis(@Nullable Analysis baseAnalysis) {
64     delegate.setBaseAnalysis(baseAnalysis);
65     return this;
66   }
67
68   @Override
69   @CheckForNull
70   public Analysis getBaseAnalysis() {
71     return delegate.getBaseAnalysis();
72   }
73
74   @Override
75   public boolean isCrossProjectDuplicationEnabled() {
76     return delegate.isCrossProjectDuplicationEnabled();
77   }
78
79   @Override
80   public MutableAnalysisMetadataHolderRule setCrossProjectDuplicationEnabled(boolean isCrossProjectDuplicationEnabled) {
81     delegate.setCrossProjectDuplicationEnabled(isCrossProjectDuplicationEnabled);
82     return this;
83   }
84
85   @Override
86   public String getBranch() {
87     return delegate.getBranch();
88   }
89
90   @Override
91   public MutableAnalysisMetadataHolderRule setBranch(@Nullable String branch) {
92     delegate.setBranch(branch);
93     return this;
94   }
95
96   @Override
97   public MutableAnalysisMetadataHolderRule setRootComponentRef(int rootComponentRef) {
98     delegate.setRootComponentRef(rootComponentRef);
99     return this;
100   }
101
102   @Override
103   public int getRootComponentRef() {
104     return delegate.getRootComponentRef();
105   }
106
107   @Override
108   public MutableAnalysisMetadataHolder setQProfilesByLanguage(Map<String, QualityProfile> qprofilesByLanguage) {
109     delegate.setQProfilesByLanguage(qprofilesByLanguage);
110     return this;
111   }
112
113   @Override
114   public Map<String, QualityProfile> getQProfilesByLanguage() {
115     return delegate.getQProfilesByLanguage();
116   }
117 }