]> source.dussan.org Git - sonarqube.git/blob
57dd0086c0328d7acbb6bc685b83f1548246e8cc
[sonarqube.git] /
1 /*
2  * SonarQube, open source software quality management tool.
3  * Copyright (C) 2008-2013 SonarSource
4  * mailto:contact AT sonarsource DOT com
5  *
6  * SonarQube 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  * SonarQube 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
21 package org.sonar.plugins.core.issue.ignore.pattern;
22
23 import com.google.common.collect.Maps;
24 import org.sonar.api.config.Settings;
25 import org.sonar.plugins.core.issue.ignore.IgnoreIssuesConfiguration;
26
27 import java.util.Map;
28
29 public class InclusionPatternInitializer extends AbstractPatternInitializer {
30
31   private Map<String, String> pathForComponent;
32
33   public InclusionPatternInitializer(Settings settings) {
34     super(settings);
35     pathForComponent = Maps.newHashMap();
36   }
37
38   @Override
39   protected String getMulticriteriaConfigurationKey() {
40     return IgnoreIssuesConfiguration.PATTERNS_MULTICRITERIA_INCLUSION_KEY;
41   }
42
43   @Override
44   public void initializePatternsForPath(String relativePath, String componentKey) {
45     pathForComponent.put(componentKey, relativePath);
46   }
47
48   public String getPathForComponent(String componentKey) {
49     return pathForComponent.get(componentKey);
50   }
51 }