Skip to content
Snippets Groups Projects
Commit 000b47a5 authored by Brendan Le Ny's avatar Brendan Le Ny
Browse files

Fix some strings

parent 62eff08f
No related branches found
No related tags found
1 merge request!3Sonar refactoring
...@@ -62,26 +62,26 @@ public class ScimStorageProviderFactory ...@@ -62,26 +62,26 @@ public class ScimStorageProviderFactory
.name("auth-user") .name("auth-user")
.type(ProviderConfigProperty.STRING_TYPE) .type(ProviderConfigProperty.STRING_TYPE)
.label("Auth username") .label("Auth username")
.helpText("Required for basic authentification.") .helpText("Required for basic authentication.")
.add() .add()
.property() .property()
.name("auth-pass") .name("auth-pass")
.type(ProviderConfigProperty.PASSWORD) .type(ProviderConfigProperty.PASSWORD)
.label("Auth password/token") .label("Auth password/token")
.helpText("Password or token required for basic or bearer authentification.") .helpText("Password or token required for basic or bearer authentication.")
.add() .add()
.property() .property()
.name("propagation-user") .name("propagation-user")
.type(ProviderConfigProperty.BOOLEAN_TYPE) .type(ProviderConfigProperty.BOOLEAN_TYPE)
.label("Enable user propagation") .label("Enable user propagation")
.helpText("Should operation on users be propagated to this provider ?") .helpText("Should operation on users be propagated to this provider?")
.defaultValue(BooleanUtils.TRUE) .defaultValue(BooleanUtils.TRUE)
.add() .add()
.property() .property()
.name("propagation-group") .name("propagation-group")
.type(ProviderConfigProperty.BOOLEAN_TYPE) .type(ProviderConfigProperty.BOOLEAN_TYPE)
.label("Enable group propagation") .label("Enable group propagation")
.helpText("Should operation on groups be propagated to this provider ?") .helpText("Should operation on groups be propagated to this provider?")
.defaultValue(BooleanUtils.TRUE) .defaultValue(BooleanUtils.TRUE)
.add() .add()
.property() .property()
...@@ -93,7 +93,7 @@ public class ScimStorageProviderFactory ...@@ -93,7 +93,7 @@ public class ScimStorageProviderFactory
.name("sync-import-action") .name("sync-import-action")
.type(ProviderConfigProperty.LIST_TYPE) .type(ProviderConfigProperty.LIST_TYPE)
.label("Import action") .label("Import action")
.helpText("What to do when the user don\'t exists in Keycloak.") .helpText("What to do when the user doesn't exists in Keycloak.")
.options("NOTHING", "CREATE_LOCAL", "DELETE_REMOTE") .options("NOTHING", "CREATE_LOCAL", "DELETE_REMOTE")
.defaultValue("CREATE_LOCAL") .defaultValue("CREATE_LOCAL")
.add() .add()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment