diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2020-10-12 16:57:03 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-10-16 20:07:41 +0000 |
commit | a4ab9ccfce778e88cc82d1d04f197af9b3d1af19 (patch) | |
tree | 4b5947045bac1b24ad5d5f6840c3bef6e4eb13b3 /server/sonar-server-common | |
parent | 16df95a4fa061755d0129927e29a3e7dc4794e8d (diff) | |
download | sonarqube-a4ab9ccfce778e88cc82d1d04f197af9b3d1af19.tar.gz sonarqube-a4ab9ccfce778e88cc82d1d04f197af9b3d1af19.zip |
SONAR-13936 Move default permission templates to internal properties
Diffstat (limited to 'server/sonar-server-common')
-rw-r--r-- | server/sonar-server-common/src/main/java/org/sonar/server/property/InternalProperties.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/server/sonar-server-common/src/main/java/org/sonar/server/property/InternalProperties.java b/server/sonar-server-common/src/main/java/org/sonar/server/property/InternalProperties.java index 0baea30e81a..55cb14407d1 100644 --- a/server/sonar-server-common/src/main/java/org/sonar/server/property/InternalProperties.java +++ b/server/sonar-server-common/src/main/java/org/sonar/server/property/InternalProperties.java @@ -54,6 +54,13 @@ public interface InternalProperties { String INSTALLATION_VERSION = "installation.version"; /** + * Default permission templates + */ + String DEFAULT_PROJECT_TEMPLATE = "defaultTemplate.prj"; + String DEFAULT_PORTFOLIO_TEMPLATE = "defaultTemplate.port"; + String DEFAULT_APPLICATION_TEMPLATE = "defaultTemplate.app"; + + /** * Read the value of the specified property. * * @return {@link Optional#empty()} if the property does not exist, an empty string if the property is empty, |