@@ -56,10 +56,10 @@ public interface ConfigurationService {
56
56
* </p>
57
57
*
58
58
* @param baseConfiguration the {@link ConfigurationService} to start from
59
- * @param overrider the {@link ConfigurationServiceOverrider} used to change the values
60
- * provided by the base configuration
59
+ * @param overrider the {@link ConfigurationServiceOverrider} used to change the values provided
60
+ * by the base configuration
61
61
* @return a new {@link ConfigurationService} starting from the configuration provided as base but
62
- * with overridden values.
62
+ * with overridden values.
63
63
*/
64
64
static ConfigurationService newOverriddenConfigurationService (
65
65
ConfigurationService baseConfiguration ,
@@ -86,9 +86,9 @@ static ConfigurationService newOverriddenConfigurationService(
86
86
* </p>
87
87
*
88
88
* @param overrider the {@link ConfigurationServiceOverrider} used to change the values provided
89
- * by the default configuration
89
+ * by the default configuration
90
90
* @return a new {@link ConfigurationService} overriding the default values with the ones provided
91
- * by the specified {@link ConfigurationServiceOverrider}
91
+ * by the specified {@link ConfigurationServiceOverrider}
92
92
* @since 4.4.0
93
93
*/
94
94
static ConfigurationService newOverriddenConfigurationService (
@@ -100,9 +100,9 @@ static ConfigurationService newOverriddenConfigurationService(
100
100
* Retrieves the configuration associated with the specified reconciler
101
101
*
102
102
* @param reconciler the reconciler we want the configuration of
103
- * @param <R> the {@code CustomResource} type associated with the specified reconciler
103
+ * @param <R> the {@code CustomResource} type associated with the specified reconciler
104
104
* @return the {@link ControllerConfiguration} associated with the specified reconciler or
105
- * {@code null} if no configuration exists for the reconciler
105
+ * {@code null} if no configuration exists for the reconciler
106
106
*/
107
107
<R extends HasMetadata > ControllerConfiguration <R > getConfigurationFor (Reconciler <R > reconciler );
108
108
@@ -223,7 +223,7 @@ default Metrics getMetrics() {
223
223
* handle concurrent reconciliations
224
224
*
225
225
* @return the {@link ExecutorService} implementation to use for concurrent reconciliation
226
- * processing
226
+ * processing
227
227
*/
228
228
default ExecutorService getExecutorService () {
229
229
return Executors .newFixedThreadPool (concurrentReconciliationThreads ());
@@ -251,8 +251,7 @@ default boolean closeClientOnStop() {
251
251
252
252
/**
253
253
* Override to provide a custom {@link DependentResourceFactory} implementation to change how
254
- * {@link io.javaoperatorsdk.operator.api.reconciler.dependent.DependentResource} are
255
- * instantiated
254
+ * {@link io.javaoperatorsdk.operator.api.reconciler.dependent.DependentResource} are instantiated
256
255
*
257
256
* @return the custom {@link DependentResourceFactory} implementation
258
257
*/
@@ -422,7 +421,7 @@ default boolean parseResourceVersionsForEventFilteringAndCaching() {
422
421
* adding finalizers, patching resources and status.
423
422
*
424
423
* @return {@code true} if Server-Side Apply (SSA) should be used when patching the primary
425
- * resources, {@code false} otherwise
424
+ * resources, {@code false} otherwise
426
425
* @see ConfigurationServiceOverrider#withUseSSAToPatchPrimaryResource(boolean)
427
426
* @since 5.0.0
428
427
*/
@@ -445,7 +444,7 @@ default boolean useSSAToPatchPrimaryResource() {
445
444
* </p>
446
445
*
447
446
* @return {@code true} if resources should be defensively cloned before returning them from
448
- * caches, {@code false} otherwise
447
+ * caches, {@code false} otherwise
449
448
* @since 5.0.0
450
449
*/
451
450
default boolean cloneSecondaryResourcesWhenGettingFromCache () {
0 commit comments