summaryrefslogtreecommitdiffstats
path: root/sonar-ws-client
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2013-10-31 15:13:01 +0100
committerJulien Lancelot <julien.lancelot@sonarsource.com>2013-10-31 15:13:01 +0100
commit3a91a55e84414f8401d9eb0aadc7382d5b4662d9 (patch)
treef2bf76fa59ab15e6f6c000279736e09d64e7ef34 /sonar-ws-client
parentd5de65e30715c1da5f3b55d264d8014e2a582092 (diff)
downloadsonarqube-3a91a55e84414f8401d9eb0aadc7382d5b4662d9.tar.gz
sonarqube-3a91a55e84414f8401d9eb0aadc7382d5b4662d9.zip
SONAR-4839 Permission user should be needed to see the changelog of an issue
Diffstat (limited to 'sonar-ws-client')
-rw-r--r--sonar-ws-client/src/main/java/org/sonar/wsclient/issue/IssueChangeDiff.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/sonar-ws-client/src/main/java/org/sonar/wsclient/issue/IssueChangeDiff.java b/sonar-ws-client/src/main/java/org/sonar/wsclient/issue/IssueChangeDiff.java
index e8859ae7a6a..364b9fb9fce 100644
--- a/sonar-ws-client/src/main/java/org/sonar/wsclient/issue/IssueChangeDiff.java
+++ b/sonar-ws-client/src/main/java/org/sonar/wsclient/issue/IssueChangeDiff.java
@@ -19,6 +19,8 @@
*/
package org.sonar.wsclient.issue;
+import javax.annotation.CheckForNull;
+
/**
* @since 4.1
*/
@@ -26,8 +28,10 @@ public interface IssueChangeDiff {
String key();
+ @CheckForNull
String newValue();
+ @CheckForNull
String oldValue();
}