All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.api.issue.Issue 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;

import com.google.common.collect.ImmutableList;
import org.sonar.api.rule.RuleKey;

import javax.annotation.CheckForNull;

import java.io.Serializable;
import java.util.Date;
import java.util.List;
import java.util.Map;

/**
 * @since 3.6
 */
public interface Issue extends Serializable {

  /**
   * Maximum number of characters in the message.
   */
  int MESSAGE_MAX_SIZE = 4000;

  /**
   * Default status when creating an issue.
   */
  String STATUS_OPEN = "OPEN";
  String STATUS_CONFIRMED = "CONFIRMED";
  String STATUS_REOPENED = "REOPENED";
  String STATUS_RESOLVED = "RESOLVED";
  String STATUS_CLOSED = "CLOSED";

  String RESOLUTION_FIXED = "FIXED";

  /**
   * Resolution when issue is flagged as false positive.
   */
  String RESOLUTION_FALSE_POSITIVE = "FALSE-POSITIVE";

  /**
   * Resolution when rule has been uninstalled or disabled in the Quality profile.
    */
  String RESOLUTION_REMOVED = "REMOVED";

  List RESOLUTIONS = ImmutableList.of(RESOLUTION_FALSE_POSITIVE, RESOLUTION_FIXED, RESOLUTION_REMOVED);

  /**
   * Return all available statuses
   *
   * @since 4.4
   */
  List STATUSES = ImmutableList.of(STATUS_OPEN, STATUS_CONFIRMED, STATUS_REOPENED, STATUS_RESOLVED, STATUS_CLOSED);

  /**
   * Unique generated key. It looks like "d2de809c-1512-4ae2-9f34-f5345c9f1a13".
   */
  String key();

  /**
   * Components are modules ("my_project"), directories ("my_project:my/dir") or files ("my_project:my/file.c").
   * Keys of Java packages and classes are currently in a special format: "my_project:com.company" and "my_project:com.company.Foo".
   */
  String componentKey();

  RuleKey ruleKey();

  /**
   * See constants in {@link org.sonar.api.rule.Severity}.
   */
  String severity();

  @CheckForNull
  String message();

  /**
   * Optional line number. If set, then it's greater than or equal 1.
   */
  @CheckForNull
  Integer line();

  /**
   * Arbitrary distance to threshold for resolving the issue.
   * 

* For examples: *

    *
  • for the rule "Avoid too complex methods" : current complexity - max allowed complexity
  • *
  • for the rule "Avoid Duplications" : number of duplicated blocks
  • *
  • for the rule "Insufficient Line Coverage" : number of lines to cover to reach the accepted threshold
  • *
*/ @CheckForNull Double effortToFix(); /** * See constant values in {@link Issue}. */ String status(); /** * The type of resolution, or null if the issue is not resolved. See constant values in {@link Issue}. */ @CheckForNull String resolution(); /** * Login of the user who reported this issue. Null if the issue is reported by a rule engine. */ @CheckForNull String reporter(); /** * Login of the user who is assigned to this issue. Null if the issue is not assigned. */ @CheckForNull String assignee(); Date creationDate(); Date updateDate(); /** * Date when status was set to {@link Issue#STATUS_CLOSED}, else null. */ @CheckForNull Date closeDate(); @CheckForNull String attribute(String key); Map attributes(); /** * Login of the SCM account that introduced this issue. Requires the * Developer Cockpit Plugin to be installed. */ @CheckForNull String authorLogin(); @CheckForNull String actionPlanKey(); /** * Non-null list of comments, ordered by chronological order. *

* IMPORTANT: existing comments are not loaded when this method is called when analyzing project * (from {@link org.sonar.api.BatchExtension}). */ List comments(); /** * During a scan return if the current issue is a new one. * @return always false on server side * @since 4.0 */ boolean isNew(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy