Make util classes to follow style guide

Signed-off-by: Taeik Lim <sibera21@gmail.com>

Issue #4545
This commit is contained in:
Taeik Lim
2024-02-06 13:00:15 +09:00
committed by Mahmoud Ben Hassine
parent 376d84888f
commit fb180404cb
10 changed files with 54 additions and 20 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2006-2007 the original author or authors.
* Copyright 2006-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -21,9 +21,13 @@ import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
/**
* @author Dan Garrette
* @author Taeik Lim
* @since 2.0.1
*/
public class BeanDefinitionUtils {
public abstract class BeanDefinitionUtils {
private BeanDefinitionUtils() {
}
/**
* @param beanName a bean definition name

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2006-2023 the original author or authors.
* Copyright 2006-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -37,8 +37,12 @@ import java.util.Map;
* @author Thomas Risberg
* @author Michael Minella
* @author Mahmoud Ben Hassine
* @author Taeik Lim
*/
public class CoreNamespaceUtils {
public abstract class CoreNamespaceUtils {
private CoreNamespaceUtils() {
}
private static final String STEP_SCOPE_PROCESSOR_BEAN_NAME = "org.springframework.batch.core.scope.internalStepScope";