diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2011-09-09 07:36:15 +0200 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2011-09-09 07:38:21 +0200 |
commit | 9167379d53bdb8cd6d7c7e57ed62f5b711329652 (patch) | |
tree | 40bc7af2831d801fbd6c07c08c4340a3eb6fc6fd /sonar-plugin-api | |
parent | 7e914e1eb6b9cfcdbc43930e8b40b256e3846989 (diff) | |
download | sonarqube-9167379d53bdb8cd6d7c7e57ed62f5b711329652.tar.gz sonarqube-9167379d53bdb8cd6d7c7e57ed62f5b711329652.zip |
SONAR-2603 provide a dedicated settings page to generate server key
This page is merged to the catgories of the General Settings page. At the same time the Email Settings page
is merged as well.
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java | 7 |
1 files changed, 6 insertions, 1 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 56e558cfd5b..df3a8584548 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 @@ -245,5 +245,10 @@ public interface CoreProperties { /** * @since 2.11 */ - String SERVER_KEY = "sonar.serverKey.secured"; + String SERVER_KEY = "sonar.server_key"; + + /** + * @since 2.11 + */ + String SERVER_KEY_IP_ADDRESS = "sonar.server_key.ip_address"; } |