Fix typo in the balloon help of SAML Username Template Importer
closes #25033 Signed-off-by: hokuda <hisanobu.okuda@gmail.com>
This commit is contained in:
parent
e99bd4aa3a
commit
a83b9d11fa
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ public class UsernameTemplateMapper extends AbstractIdentityProviderMapper {
|
|||
property.setLabel("Template");
|
||||
property.setHelpText("Template to use to format the username to import. Substitutions are enclosed in ${}. For example: '${ALIAS}.${NAMEID}'. ALIAS is the provider alias. NAMEID is that SAML name id assertion. ATTRIBUTE.<NAME> references a SAML attribute where name is the attribute name or friendly name. \n"
|
||||
+ "The substitution can be converted to upper or lower case by appending |uppercase or |lowercase to the substituted value, e.g. '${NAMEID | lowercase} \n"
|
||||
+ "Local part of email can be extracted by appending |localpart to the substituted value, e.g. ${CLAIM.email | localpart}. If \"@\" is not part of the string, this conversion leaves the substitution untouched.");
|
||||
+ "Local part of email can be extracted by appending |localpart to the substituted value, e.g. ${ATTRIBUTE.email | localpart}. If \"@\" is not part of the string, this conversion leaves the substitution untouched.");
|
||||
property.setType(ProviderConfigProperty.STRING_TYPE);
|
||||
property.setDefaultValue("${ALIAS}.${NAMEID}");
|
||||
configProperties.add(property);
|
||||
|
|
Loading…
Reference in a new issue