make property name unique

fixes: #40128

(cherry picked from commit 3a1ac8c934f965fc636726bee4be84c89b99503e)

Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
Co-authored-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
This commit is contained in:
Niko Köbler 2025-06-05 22:39:47 +02:00 committed by GitHub
parent 96daab16d7
commit 87e2633c0c
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