aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@gmail.com>2013-09-18 10:17:17 +0200
committerJulien Lancelot <julien.lancelot@gmail.com>2013-09-18 10:17:17 +0200
commit62723fc7467cc38103ddee52c12bea95b5fecbed (patch)
tree9284a6d40bd9f02c03a8d6908a37a6f7f4282ba3 /sonar-plugin-api
parent369a9d974e4f5e48bccd76a68ade1d7497fd984a (diff)
downloadsonarqube-62723fc7467cc38103ddee52c12bea95b5fecbed.tar.gz
sonarqube-62723fc7467cc38103ddee52c12bea95b5fecbed.zip
SONAR-4660 Make Settings > 'Database Cleaner', 'Differential Views', 'Duplications', 'Localization' and 'Security' pages, some sub-categories of the 'General' page
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java b/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java
index 29ef316c5ab..799c7b34423 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java
@@ -38,23 +38,57 @@ public interface CoreProperties {
String CATEGORY_GENERAL = "general";
/**
+ * @since 4.0
+ */
+ String SUBCATEGORY_DATABASE_CLEANER = "databaseCleaner";
+
+ /**
+ * @since 4.0
+ */
+ String SUBCATEGORY_DUPLICATIONS = "duplications";
+
+ /**
+ * @since 4.0
+ */
+ String SUBCATEGORY_DIFFERENTIAL_VIEWS = "differentialViews";
+
+ /**
+ *@since 4.0
+ */
+ String SUBCATEGORY_SECURITY = "security";
+
+ /**
+ *@since 4.0
+ */
+ String SUBCATEGORY_L10N = "localization";
+
+ /**
* @since 2.11
*/
String CATEGORY_CODE_COVERAGE = "codeCoverage";
/**
* @since 2.11
+ * @deprecated since 4.0. See http://jira.codehaus.org/browse/SONAR-4660. Do not forget to remove the properties from core bundles
+ * @see #SUBCATEGORY_DUPLICATIONS
*/
+ @Deprecated
String CATEGORY_DUPLICATIONS = "duplications";
/**
* @since 2.11
+ * @deprecated since 4.0. See http://jira.codehaus.org/browse/SONAR-4660. Do not forget to remove the properties from core bundles
+ * @see #SUBCATEGORY_SECURITY
*/
+ @Deprecated
String CATEGORY_SECURITY = "security";
/**
* @since 2.11
+ * @deprecated since 4.0. See http://jira.codehaus.org/browse/SONAR-4660. Do not forget to remove the properties from core bundles
+ * @see #SUBCATEGORY_L10N
*/
+ @Deprecated
String CATEGORY_L10N = "localization";
/**
@@ -64,7 +98,10 @@ public interface CoreProperties {
/**
* @since 2.11
+ * @deprecated since 4.0. See http://jira.codehaus.org/browse/SONAR-4660. Do not forget to remove the properties from core bundles
+ * @see #SUBCATEGORY_DIFFERENTIAL_VIEWS
*/
+ @Deprecated
String CATEGORY_DIFFERENTIAL_VIEWS = "differentialViews";
/**
@@ -76,7 +113,15 @@ public interface CoreProperties {
* @since 4.0
*/
String SUBCATEGORY_FILES_EXCLUSIONS = "files";
+
+ /**
+ * @since 4.0
+ */
String SUBCATEGORY_DUPLICATIONS_EXCLUSIONS = "duplications";
+
+ /**
+ * @since 4.0
+ */
String SUBCATEGORY_COVERAGE_EXCLUSIONS = "coverage";
/**