]> source.dussan.org Git - sonarqube.git/commitdiff
[NO-JIRA] Remove code smells related to missing @deprecated javadoc
authorMatteo Mara <matteo.mara@sonarsource.com>
Thu, 30 Mar 2023 13:38:46 +0000 (15:38 +0200)
committersonartech <sonartech@sonarsource.com>
Thu, 30 Mar 2023 20:03:08 +0000 (20:03 +0000)
server/sonar-server-common/src/main/java/org/sonar/server/rule/index/RuleIndex.java
server/sonar-server-common/src/main/java/org/sonar/server/security/SecurityStandards.java
server/sonar-webserver-webapi/src/main/java/org/sonar/server/hotspot/ws/SearchAction.java
server/sonar-webserver-webapi/src/main/java/org/sonar/server/rule/ws/RulesWsParameters.java
server/sonar-webserver-webapi/src/main/java/org/sonar/server/rule/ws/SearchAction.java

index 6c222a0027daa72e1e594a454cca96908cbf7332..2fff25c259e32ffb4269b84aec898bbb377830f9 100644 (file)
@@ -128,6 +128,9 @@ public class RuleIndex {
   public static final String FACET_TYPES = "types";
   public static final String FACET_OLD_DEFAULT = "true";
   public static final String FACET_CWE = "cwe";
+  /**
+   * @deprecated SansTop25 report is outdated, it has been completely deprecated in version 10.0 and will be removed from version 11.0
+   */
   @Deprecated(since = "10.0", forRemoval = true)
   public static final String FACET_SANS_TOP_25 = "sansTop25";
   public static final String FACET_OWASP_TOP_10 = "owaspTop10";
index c6c02b128bd4d1ae5761953419c752f266f49509..1ab2cdda6c74a1a174fb4b137eacccc67470e308 100644 (file)
@@ -52,6 +52,10 @@ import static org.sonar.server.security.SecurityStandards.VulnerabilityProbabili
 public final class SecurityStandards {
 
   public static final String UNKNOWN_STANDARD = "unknown";
+
+  /**
+   * @deprecated SansTop25 report is outdated, it has been completely deprecated in version 10.0 and will be removed from version 11.0
+   */
   @Deprecated(since = "10.0", forRemoval = true)
   public static final String SANS_TOP_25_INSECURE_INTERACTION = "insecure-interaction";
   @Deprecated(since = "10.0", forRemoval = true)
@@ -67,6 +71,9 @@ public final class SecurityStandards {
   private static final String CWE_PREFIX = "cwe:";
   // See https://www.sans.org/top25-software-errors
 
+  /**
+   * @deprecated SansTop25 report is outdated, it has been completely deprecated in version 10.0 and will be removed from version 11.0
+   */
   @Deprecated(since = "10.0", forRemoval = true)
   private static final Set<String> INSECURE_CWE = new HashSet<>(asList("89", "78", "79", "434", "352", "601"));
   @Deprecated(since = "10.0", forRemoval = true)
@@ -75,7 +82,7 @@ public final class SecurityStandards {
   private static final Set<String> POROUS_CWE = new HashSet<>(asList("306", "862", "798", "311", "807", "250", "863", "732", "327", "307", "759"));
 
   /**
-   * @deprecated SansTop25 report is outdated and will be removed from version 11.0
+   * @deprecated SansTop25 report is outdated, it has been completely deprecated in version 10.0 and will be removed from version 11.0
    */
   @Deprecated
   public static final Map<String, Set<String>> CWES_BY_SANS_TOP_25 = ImmutableMap.of(
@@ -306,7 +313,7 @@ public final class SecurityStandards {
   }
 
   /**
-   * @deprecated SansTop25 report is outdated and will be removed from version 11.0
+   * @deprecated SansTop25 report is outdated, it has been completely deprecated in version 10.0 and will be removed from version 11.0
    */
   @Deprecated
   public Set<String> getSansTop25() {
index ac8662feed2e7c35e1b5f983b82d44e0ed633445..590d9bd5ce0fb7bd526a3aa9b14e31ca2d89362e 100644 (file)
@@ -118,6 +118,9 @@ public class SearchAction implements HotspotsWsAction {
   private static final String PARAM_OWASP_ASVS_40 = "owaspAsvs-4.0";
   private static final String PARAM_OWASP_TOP_10_2017 = "owaspTop10";
   private static final String PARAM_OWASP_TOP_10_2021 = "owaspTop10-2021";
+  /**
+   * @deprecated SansTop25 report is outdated, it has been completely deprecated in version 10.0 and will be removed from version 11.0
+   */
   @Deprecated(since = "10.0", forRemoval = true)
   private static final String PARAM_SANS_TOP_25 = "sansTop25";
   private static final String PARAM_SONARSOURCE_SECURITY = "sonarsourceSecurity";
index fa4612de1503c38a6b5eeff2f0ba7b8706f991a2..8505722956a73ce59611f02d0cb82334e232adee 100644 (file)
@@ -35,6 +35,9 @@ public class RulesWsParameters {
   public static final String PARAM_CWE = "cwe";
   public static final String PARAM_OWASP_TOP_10 = "owaspTop10";
   public static final String PARAM_OWASP_TOP_10_2021 = "owaspTop10-2021";
+  /**
+   * @deprecated SansTop25 report is outdated, it has been completely deprecated in version 10.0 and will be removed from version 11.0
+   */
   @Deprecated(since = "10.0", forRemoval = true)
   public static final String PARAM_SANS_TOP_25 = "sansTop25";
   public static final String PARAM_SONARSOURCE_SECURITY = "sonarsourceSecurity";
index 1cb7889bd9648f1f92d6d338af7ddb9fe06b45bd..cbf97562dd67b2081388c0a460c81f2bbf6f1ef2 100644 (file)
@@ -617,6 +617,9 @@ public class SearchAction implements RulesWsAction {
       return this;
     }
 
+    /**
+     * @deprecated SansTop25 report is outdated, it has been completely deprecated in version 10.0 and will be removed from version 11.0
+     */
     @Deprecated(since = "10.0", forRemoval = true)
     public List<String> getSansTop25() {
       return sansTop25;