This is an automated email from the ASF dual-hosted git repository.
ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/causeway.git
The following commit(s) were added to refs/heads/master by this push:
new 1f07527f33 CAUSEWAY-3723: removes superfluous qualifier from
Authenticator bean factory method (Secman)
1f07527f33 is described below
commit 1f07527f33395daa0949d5f2a504eef3c143b5c1
Author: Andi Huber <[email protected]>
AuthorDate: Wed Apr 17 16:22:35 2024 +0200
CAUSEWAY-3723: removes superfluous qualifier from Authenticator bean
factory method (Secman)
---
.../integration/authenticator/AuthenticatorSecmanAutoConfiguration.java | 1 -
1 file changed, 1 deletion(-)
diff --git
a/extensions/security/secman/integration/src/main/java/org/apache/causeway/extensions/secman/integration/authenticator/AuthenticatorSecmanAutoConfiguration.java
b/extensions/security/secman/integration/src/main/java/org/apache/causeway/extensions/secman/integration/authenticator/AuthenticatorSecmanAutoConfiguration.java
index 52ac1d7633..130f10f9ab 100644
---
a/extensions/security/secman/integration/src/main/java/org/apache/causeway/extensions/secman/integration/authenticator/AuthenticatorSecmanAutoConfiguration.java
+++
b/extensions/security/secman/integration/src/main/java/org/apache/causeway/extensions/secman/integration/authenticator/AuthenticatorSecmanAutoConfiguration.java
@@ -39,7 +39,6 @@ public class AuthenticatorSecmanAutoConfiguration {
@Bean(CausewayModuleExtSecmanApplib.NAMESPACE + ".AuthenticatorSecman")
@ConditionalOnMissingBean(Authenticator.class)
- @Qualifier("Secman")
public Authenticator authenticatorSecman(
final ApplicationUserRepository applicationUserRepository,
final @Qualifier("Secman") PasswordEncoder passwordEncoder) {