mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-09 23:12:06 -03:30
Use proper field type for the IPA-Tuura federation provider password
#Closes 35529 Signed-off-by: Stefan Guilhen <sguilhen@redhat.com>
This commit is contained in:
parent
b98cd12b58
commit
590944b111
@ -53,13 +53,16 @@ public class IpatuuraUserStorageProviderFactory implements UserStorageProviderFa
|
||||
configMetadata = ProviderConfigurationBuilder.create()
|
||||
/* SCIMv2 server url */
|
||||
.property().name("scimurl").type(ProviderConfigProperty.STRING_TYPE).label("Ipatuura Server URL")
|
||||
.helpText("Backend ipatuura server URL in the format: server.example.com:8080").add()
|
||||
.helpText("Backend ipatuura server URL in the format: server.example.com:8080")
|
||||
.add()
|
||||
/* Login username, used to auth to make HTTP requests */
|
||||
.property().name("loginusername").type(ProviderConfigProperty.STRING_TYPE).label("Login username")
|
||||
.helpText("username to authenticate through the login page").add()
|
||||
.helpText("Username to authenticate through the server")
|
||||
.add()
|
||||
/* Login password, used to auth to make HTTP requests */
|
||||
.property().name("loginpassword").type(ProviderConfigProperty.STRING_TYPE).label("Login password")
|
||||
.helpText("password to authenticate through the login page").add().build();
|
||||
.property().name("loginpassword").type(ProviderConfigProperty.PASSWORD).label("Login password")
|
||||
.helpText("password to authenticate through the server")
|
||||
.secret(true).add().build();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user