org.sonar.server.qualityprofile.RuleActivation Maven / Gradle / Ivy
/*
* SonarQube
* Copyright (C) 2009-2018 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonar.server.qualityprofile;
import com.google.common.base.Strings;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.CheckForNull;
import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
import org.sonar.api.rule.RuleKey;
import org.sonar.api.rule.Severity;
@Immutable
public class RuleActivation {
private final RuleKey ruleKey;
private final boolean reset;
private final String severity;
private final Map parameters = new HashMap<>();
private RuleActivation(RuleKey ruleKey, boolean reset, @Nullable String severity, @Nullable Map parameters) {
this.ruleKey = ruleKey;
this.reset = reset;
this.severity = severity;
if (severity != null && !Severity.ALL.contains(severity)) {
throw new IllegalArgumentException("Unknown severity: " + severity);
}
if (parameters != null) {
for (Map.Entry entry : parameters.entrySet()) {
this.parameters.put(entry.getKey(), Strings.emptyToNull(entry.getValue()));
}
}
}
public static RuleActivation createReset(RuleKey ruleKey) {
return new RuleActivation(ruleKey, true, null, null);
}
public static RuleActivation create(RuleKey ruleKey, @Nullable String severity, @Nullable Map parameters) {
return new RuleActivation(ruleKey, false, severity, parameters);
}
public static RuleActivation create(RuleKey ruleKey) {
return create(ruleKey, null, null);
}
/**
* Optional severity. Use the parent severity or default rule severity if null.
*/
@CheckForNull
public String getSeverity() {
return severity;
}
public RuleKey getRuleKey() {
return ruleKey;
}
@CheckForNull
public String getParameter(String key) {
return parameters.get(key);
}
public boolean hasParameter(String key) {
return parameters.containsKey(key);
}
public boolean isReset() {
return reset;
}
}