diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-05-30 17:10:27 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-05-30 17:10:37 +0200 |
commit | 2fa5e60abcad9866fd38deea8b11bbc9e049ce33 (patch) | |
tree | 929e2195744b0709251a7b01e734d41ab69d0da8 /sonar-plugin-api | |
parent | 59e9c32c20d7dd365bdca6f908545618c57567d1 (diff) | |
download | sonarqube-2fa5e60abcad9866fd38deea8b11bbc9e049ce33.tar.gz sonarqube-2fa5e60abcad9866fd38deea8b11bbc9e049ce33.zip |
Deprecate the decorator barriers related to issue persistence
Indeed issues are now persisted in an atomic operation at the end of the batch
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/batch/DecoratorBarriers.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/batch/DecoratorBarriers.java b/sonar-plugin-api/src/main/java/org/sonar/api/batch/DecoratorBarriers.java index 45185d81ec9..8b8562ddc0a 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/batch/DecoratorBarriers.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/batch/DecoratorBarriers.java @@ -68,12 +68,16 @@ public interface DecoratorBarriers { /** * @since 2.13 + * @deprecated in 3.6. Issues are persisted at the end of analysis. */ + @Deprecated String START_VIOLATION_PERSISTENCE = "START_VIOLATION_PERSISTENCE"; /** * @since 2.13 + * @deprecated in 3.6. Issues are persisted at the end of analysis */ + @Deprecated String END_OF_VIOLATION_PERSISTENCE = "END_OF_VIOLATION_PERSISTENCE"; /** |