make property name unique

fixes: #40128

Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
This commit is contained in:
Erik Jan de Wit 2025-06-05 20:18:02 +02:00 committed by GitHub
parent c9a7a20764
commit 3a1ac8c934
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,13 +34,14 @@ public class AuthenticationFlowSelectorExecutorFactory implements ClientPolicyEx
public static final String PROVIDER_ID = "auth-flow-enforcer";
public static final String AUTH_FLOW_ALIAS = "auth-flow-alias";
public static final String AUTH_FLOW_LOA = "auth-flow-loa";
private static final ProviderConfigProperty AUTH_FLOW_ALIAS_PROPERTY = new ProviderConfigProperty(
AUTH_FLOW_ALIAS, "Auth Flow Alias", "Insert the alias of the authentication flow",
ProviderConfigProperty.STRING_TYPE, null);
private static final ProviderConfigProperty AUTH_FLOW_LOA_PROPERTY = new ProviderConfigProperty(
AUTH_FLOW_ALIAS, "Auth Flow Loa", "Insert the loa to enforce when the selected authentication flow is executed",
AUTH_FLOW_LOA, "Auth Flow Loa", "Insert the loa to enforce when the selected authentication flow is executed",
ProviderConfigProperty.INTEGER_TYPE, 1);
@Override