diff options
author | Serhat Yenican <104850907+serhat-yenican-sonarsource@users.noreply.github.com> | 2024-11-14 16:45:11 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-11-19 20:02:53 +0000 |
commit | e355b1927914aec7e22b4c3da98d9e75c48a57d5 (patch) | |
tree | 88ecdf23e495bdc98121ce2c2ba65b57f42d2b74 /sonar-core | |
parent | ae49ca686664b229b51b5f74299d45d87d663e30 (diff) | |
download | sonarqube-e355b1927914aec7e22b4c3da98d9e75c48a57d5.tar.gz sonarqube-e355b1927914aec7e22b4c3da98d9e75c48a57d5.zip |
CODEFIX-192 Add ai code fix enablement to audit logs (#12238)
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/config/AiCodeFixEnablementConstants.java | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/config/AiCodeFixEnablementConstants.java b/sonar-core/src/main/java/org/sonar/core/config/AiCodeFixEnablementConstants.java new file mode 100644 index 00000000000..6e4ee5ca133 --- /dev/null +++ b/sonar-core/src/main/java/org/sonar/core/config/AiCodeFixEnablementConstants.java @@ -0,0 +1,28 @@ +/* + * SonarQube + * Copyright (C) 2009-2024 SonarSource SA + * mailto:info AT sonarsource DOT com + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +package org.sonar.core.config; + +public final class AiCodeFixEnablementConstants { + public static final String SUGGESTION_FEATURE_ENABLED_PROPERTY = "sonar.ai.suggestions.enabled"; + + private AiCodeFixEnablementConstants() { + } + +} |