org.sonar.api.issue.action.Action Maven / Gradle / Ivy
/*
* SonarQube, open source software quality management tool.
* Copyright (C) 2008-2014 SonarSource
* mailto:contact AT sonarsource DOT com
*
* SonarQube 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.
*
* SonarQube 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.api.issue.action;
import com.google.common.annotations.Beta;
import com.google.common.base.Preconditions;
import com.google.common.base.Strings;
import com.google.common.collect.ImmutableList;
import org.sonar.api.issue.Issue;
import org.sonar.api.issue.condition.Condition;
import java.util.List;
import static com.google.common.collect.Lists.newArrayList;
/**
* @since 3.6
*/
@Beta
public class Action {
private final String key;
private final List conditions;
private final List functions;
Action(String key) {
Preconditions.checkArgument(!Strings.isNullOrEmpty(key), "Action key must be set");
this.key = key;
this.conditions = newArrayList();
this.functions = newArrayList();
}
public String key() {
return key;
}
public Action setConditions(Condition... conditions) {
this.conditions.addAll(ImmutableList.copyOf(conditions));
return this;
}
public List conditions() {
return conditions;
}
public Action setFunctions(Function... functions) {
this.functions.addAll(ImmutableList.copyOf(functions));
return this;
}
public List functions() {
return functions;
}
public boolean supports(Issue issue) {
for (Condition condition : conditions) {
if (!condition.matches(issue)) {
return false;
}
}
return true;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Action that = (Action) o;
if (!key.equals(that.key)) {
return false;
}
return true;
}
@Override
public int hashCode() {
return key.hashCode();
}
@Override
public String toString() {
return key;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy