Package org.sonar.api.issue.condition

Examples of org.sonar.api.issue.condition.IsUnResolved


  public PlanAction(ActionPlanService actionPlanService, IssueUpdater issueUpdater) {
    super(KEY);
    this.actionPlanService = actionPlanService;
    this.issueUpdater = issueUpdater;
    super.setConditions(new IsUnResolved());
  }
View Full Code Here


  public AssignAction(UserFinder userFinder, IssueUpdater issueUpdater) {
    super(KEY);
    this.userFinder = userFinder;
    this.issueUpdater = issueUpdater;
    super.setConditions(new IsUnResolved());
  }
View Full Code Here

  private final IssueUpdater issueUpdater;

  public SetSeverityAction(IssueUpdater issueUpdater) {
    super(KEY);
    this.issueUpdater = issueUpdater;
    super.setConditions(new IsUnResolved(), new Condition() {
      @Override
      public boolean matches(Issue issue) {
        return isCurrentUserIssueAdmin(((DefaultIssue) issue).projectKey());
      }
    });
View Full Code Here

TOP

Related Classes of org.sonar.api.issue.condition.IsUnResolved

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.