aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-auth-saml
diff options
context:
space:
mode:
authorPhilippe Perrin <philippe.perrin@sonarsource.com>2021-04-15 09:06:22 +0200
committersonartech <sonartech@sonarsource.com>2021-04-15 20:03:45 +0000
commit73785a8ae690606b526173971b81a4391738ee9d (patch)
tree838f450371cada0b075bab6b4a5da2d02ccb6c4f /server/sonar-auth-saml
parentded035a7e58ea1d978ef4fb1da79cea565f6cb2c (diff)
downloadsonarqube-73785a8ae690606b526173971b81a4391738ee9d.tar.gz
sonarqube-73785a8ae690606b526173971b81a4391738ee9d.zip
SONAR-14684 Fix SSF-151
Diffstat (limited to 'server/sonar-auth-saml')
-rw-r--r--server/sonar-auth-saml/src/main/java/org/sonar/auth/saml/SamlSettings.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/sonar-auth-saml/src/main/java/org/sonar/auth/saml/SamlSettings.java b/server/sonar-auth-saml/src/main/java/org/sonar/auth/saml/SamlSettings.java
index 88776a26acc..4cae9f55b38 100644
--- a/server/sonar-auth-saml/src/main/java/org/sonar/auth/saml/SamlSettings.java
+++ b/server/sonar-auth-saml/src/main/java/org/sonar/auth/saml/SamlSettings.java
@@ -28,6 +28,7 @@ import org.sonar.api.server.ServerSide;
import static java.lang.String.valueOf;
import static org.sonar.api.PropertyType.BOOLEAN;
+import static org.sonar.api.PropertyType.PASSWORD;
@ServerSide
public class SamlSettings {
@@ -146,6 +147,7 @@ public class SamlSettings {
.description("X.509 certificate for the identity provider.")
.category(CATEGORY)
.subCategory(SUBCATEGORY)
+ .type(PASSWORD)
.index(6)
.build(),
PropertyDefinition.builder(USER_LOGIN_ATTRIBUTE)