Use explicit types everywhere instead of var

This commit is contained in:
Daniel Garnier-Moiroux 2024-08-08 09:09:28 +02:00 committed by Rob Winch
parent 34d964eb08
commit 109da2719f
4 changed files with 8 additions and 7 deletions

View File

@ -76,8 +76,8 @@ class InitializeAuthenticationProviderBeanManagerConfigurer extends GlobalAuthen
+ "using the DSL.", authenticationProviders.size(), beanNames)); + "using the DSL.", authenticationProviders.size(), beanNames));
return; return;
} }
var authenticationProvider = authenticationProviders.get(0).getBean(); AuthenticationProvider authenticationProvider = authenticationProviders.get(0).getBean();
var authenticationProviderBeanName = authenticationProviders.get(0).getName(); String authenticationProviderBeanName = authenticationProviders.get(0).getName();
auth.authenticationProvider(authenticationProvider); auth.authenticationProvider(authenticationProvider);
this.logger.info(LogMessage.format( this.logger.info(LogMessage.format(

View File

@ -89,8 +89,8 @@ class InitializeUserDetailsBeanManagerConfigurer extends GlobalAuthenticationCon
beanNames)); beanNames));
return; return;
} }
var userDetailsService = userDetailsServices.get(0).getBean(); UserDetailsService userDetailsService = userDetailsServices.get(0).getBean();
var userDetailsServiceBeanName = userDetailsServices.get(0).getName(); String userDetailsServiceBeanName = userDetailsServices.get(0).getName();
PasswordEncoder passwordEncoder = getBeanOrNull(PasswordEncoder.class); PasswordEncoder passwordEncoder = getBeanOrNull(PasswordEncoder.class);
UserDetailsPasswordService passwordManager = getBeanOrNull(UserDetailsPasswordService.class); UserDetailsPasswordService passwordManager = getBeanOrNull(UserDetailsPasswordService.class);
CompromisedPasswordChecker passwordChecker = getBeanOrNull(CompromisedPasswordChecker.class); CompromisedPasswordChecker passwordChecker = getBeanOrNull(CompromisedPasswordChecker.class);

View File

@ -20,6 +20,7 @@ import java.lang.reflect.Modifier;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith; import org.junit.jupiter.api.extension.ExtendWith;
import org.mockito.MockedStatic;
import org.mockito.Mockito; import org.mockito.Mockito;
import org.springframework.aop.framework.ProxyFactory; import org.springframework.aop.framework.ProxyFactory;
@ -141,7 +142,7 @@ public class AutowireBeanFactoryObjectPostProcessorTests {
@Test @Test
void postProcessWhenObjectIsCgLibProxyAndInNativeImageThenUseExistingBean() { void postProcessWhenObjectIsCgLibProxyAndInNativeImageThenUseExistingBean() {
try (var detector = Mockito.mockStatic(NativeDetector.class)) { try (MockedStatic<NativeDetector> detector = Mockito.mockStatic(NativeDetector.class)) {
given(NativeDetector.inNativeImage()).willReturn(true); given(NativeDetector.inNativeImage()).willReturn(true);
ProxyFactory proxyFactory = new ProxyFactory(new MyClass()); ProxyFactory proxyFactory = new ProxyFactory(new MyClass());
@ -158,7 +159,7 @@ public class AutowireBeanFactoryObjectPostProcessorTests {
@Test @Test
void postProcessWhenObjectIsCgLibProxyAndInNativeImageAndBeanDoesNotExistsThenIllegalStateException() { void postProcessWhenObjectIsCgLibProxyAndInNativeImageAndBeanDoesNotExistsThenIllegalStateException() {
try (var detector = Mockito.mockStatic(NativeDetector.class)) { try (MockedStatic<NativeDetector> detector = Mockito.mockStatic(NativeDetector.class)) {
given(NativeDetector.inNativeImage()).willReturn(true); given(NativeDetector.inNativeImage()).willReturn(true);
ProxyFactory proxyFactory = new ProxyFactory(new MyClass()); ProxyFactory proxyFactory = new ProxyFactory(new MyClass());

View File

@ -267,7 +267,7 @@ public class LdapUserDetailsManagerTests {
@Test @Test
public void testRoleNamesStartWithCustomRolePrefix() { public void testRoleNamesStartWithCustomRolePrefix() {
var customPrefix = "GROUP_"; String customPrefix = "GROUP_";
this.mgr.setRolePrefix(customPrefix); this.mgr.setRolePrefix(customPrefix);
this.mgr.setUsernameMapper(new DefaultLdapUsernameToDnMapper("ou=people", "uid")); this.mgr.setUsernameMapper(new DefaultLdapUsernameToDnMapper("ou=people", "uid"));