diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-01-31 16:32:49 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-02-01 14:13:03 +0100 |
commit | 62e070ba1bbdd436914a02a790ab541644063d90 (patch) | |
tree | e7336a06e63928184b6dc7bd7177e170f7372d72 /sonar-plugin-api | |
parent | 5fba673a6800d92fc26ea0e491cbb2eec8364797 (diff) | |
download | sonarqube-62e070ba1bbdd436914a02a790ab541644063d90.tar.gz sonarqube-62e070ba1bbdd436914a02a790ab541644063d90.zip |
SONAR-7762 Remove allow to signup feature
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java | 7 |
1 files changed, 7 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 b4eb78e6721..273224793d9 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 @@ -183,7 +183,14 @@ public interface CoreProperties { String CORE_FORCE_AUTHENTICATION_PROPERTY = "sonar.forceAuthentication"; boolean CORE_FORCE_AUTHENTICATION_DEFAULT_VALUE = false; + + /** + * @deprecated since 6.3. This feature is not supported anymore + * @see <a href="https://jira.sonarsource.com/browse/SONAR-7762">SONAR-7762/a> + */ + @Deprecated String CORE_ALLOW_USERS_TO_SIGNUP_PROPERTY = "sonar.allowUsersToSignUp"; + String CORE_DEFAULT_GROUP = "sonar.defaultGroup"; String CORE_DEFAULT_GROUP_DEFAULT_VALUE = "sonar-users"; boolean CORE_ALLOW_USERS_TO_SIGNUP_DEAULT_VALUE = false; |