2 * SonarQube, open source software quality management tool.
3 * Copyright (C) 2008-2013 SonarSource
4 * mailto:contact AT sonarsource DOT com
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.
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.
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.
21 package org.sonar.plugins.core.issue.ignore.pattern;
23 import com.google.common.collect.Maps;
24 import org.sonar.api.config.Settings;
25 import org.sonar.plugins.core.issue.ignore.IgnoreIssuesConfiguration;
29 public class InclusionPatternInitializer extends AbstractPatternInitializer {
31 private Map<String, String> pathForComponent;
33 public InclusionPatternInitializer(Settings settings) {
35 pathForComponent = Maps.newHashMap();
39 protected String getMulticriteriaConfigurationKey() {
40 return IgnoreIssuesConfiguration.PATTERNS_MULTICRITERIA_INCLUSION_KEY;
44 public void initializePatternsForPath(String relativePath, String componentKey) {
45 pathForComponent.put(componentKey, relativePath);
48 public String getPathForComponent(String componentKey) {
49 return pathForComponent.get(componentKey);