aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api/src
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2017-01-31 16:27:07 +0100
committerJulien Lancelot <julien.lancelot@sonarsource.com>2017-02-01 14:13:03 +0100
commit5fba673a6800d92fc26ea0e491cbb2eec8364797 (patch)
tree37ae5ac56dab020d8863b9444b0d47fe950fa6c5 /sonar-plugin-api/src
parent3028d83ea3505b63ee8741e984c57dfeea0a9946 (diff)
downloadsonarqube-5fba673a6800d92fc26ea0e491cbb2eec8364797.tar.gz
sonarqube-5fba673a6800d92fc26ea0e491cbb2eec8364797.zip
SONAR-8087 Deprecate no more used types in PropertyType API
Diffstat (limited to 'sonar-plugin-api/src')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/PropertyType.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/PropertyType.java b/sonar-plugin-api/src/main/java/org/sonar/api/PropertyType.java
index a041c484b0f..d1292e46409 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/PropertyType.java
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/PropertyType.java
@@ -60,7 +60,10 @@ public enum PropertyType {
/**
* Sonar Metric
+ *
+ * @deprecated since 6.3, this type is useless as Dashboards have been removed
*/
+ @Deprecated
METRIC,
/**
@@ -90,11 +93,17 @@ public enum PropertyType {
/**
* Level metric type
+ *
+ * @deprecated since 6.3, this type is useless as Dashboards have been removed
*/
+ @Deprecated
METRIC_LEVEL,
/**
- * Long value, positivie or negative
+ * Long value, positive or negative
+ *
+ * @deprecated since 6.3, this type is useless as Dashboards have been removed
*/
+ @Deprecated
LONG
}