diff --git a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/OnEndpointElementCondition.java b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/OnEndpointElementCondition.java index a9b9a3f7dd0..ff0cb0e655c 100644 --- a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/OnEndpointElementCondition.java +++ b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/OnEndpointElementCondition.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2021 the original author or authors. + * Copyright 2012-2022 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. @@ -85,7 +85,7 @@ public abstract class OnEndpointElementCondition extends SpringBootCondition { * Return the default outcome that should be used. * @param context the condition context * @return the default outcome - * @deprecated since 2.6.0 for removal in 2.8.0 in favor of + * @deprecated since 2.6.0 for removal in 3.0.0 in favor of * {@link #getDefaultOutcome(ConditionContext, AnnotationAttributes)} */ @Deprecated diff --git a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/expose/IncludeExcludeEndpointFilter.java b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/expose/IncludeExcludeEndpointFilter.java index fa55c55b2b6..fe92d835710 100644 --- a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/expose/IncludeExcludeEndpointFilter.java +++ b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/expose/IncludeExcludeEndpointFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2021 the original author or authors. + * Copyright 2012-2022 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. @@ -58,7 +58,7 @@ public class IncludeExcludeEndpointFilter> implem * @param environment the environment containing the properties * @param prefix the property prefix to bind * @param defaultIncludes the default {@code includes} to use when none are specified. - * @deprecated since 2.6.0 for removal in 2.8.0 in favor of + * @deprecated since 2.6.0 for removal in 3.0.0 in favor of * {@link #IncludeExcludeEndpointFilter(Class, Environment, String, String[])} */ @Deprecated @@ -103,7 +103,7 @@ public class IncludeExcludeEndpointFilter> implem * @param include the include patterns * @param exclude the exclude patterns * @param defaultIncludes the default {@code includes} to use when none are specified. - * @deprecated since 2.6.0 for removal in 2.8.0 in favor of + * @deprecated since 2.6.0 for removal in 3.0.0 in favor of * {@link #IncludeExcludeEndpointFilter(Class, Environment, String, String[])} */ @Deprecated @@ -174,7 +174,7 @@ public class IncludeExcludeEndpointFilter> implem /** * Default include patterns that can be used. - * @deprecated since 2.6.0 for removal in 2.8.0 in favor of {@link EndpointExposure}. + * @deprecated since 2.6.0 for removal in 3.0.0 in favor of {@link EndpointExposure}. */ @Deprecated public enum DefaultIncludes { diff --git a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/context/properties/ConfigurationPropertiesReportEndpoint.java b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/context/properties/ConfigurationPropertiesReportEndpoint.java index bff7fc6d4fd..f1545096eb5 100644 --- a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/context/properties/ConfigurationPropertiesReportEndpoint.java +++ b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/context/properties/ConfigurationPropertiesReportEndpoint.java @@ -169,7 +169,7 @@ public class ConfigurationPropertiesReportEndpoint implements ApplicationContext * {@link ConfigurationProperties @ConfigurationProperties} objects into a {@link Map} * structure. * @param mapper the object mapper - * @deprecated since 2.6 for removal in 2.8 in favor of + * @deprecated since 2.6 for removal in 3.0 in favor of * {@link #configureJsonMapper(com.fasterxml.jackson.databind.json.JsonMapper.Builder)} */ @Deprecated diff --git a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/env/EnvironmentEndpoint.java b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/env/EnvironmentEndpoint.java index 79644791c2e..a261deeda4c 100644 --- a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/env/EnvironmentEndpoint.java +++ b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/env/EnvironmentEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2021 the original author or authors. + * Copyright 2012-2022 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. @@ -198,7 +198,7 @@ public class EnvironmentEndpoint { * @param key the name to sanitize * @param value the value to sanitize * @return the sanitized value - * @deprecated since 2.6.0 for removal in 2.8.0 as sanitization should be internal to + * @deprecated since 2.6.0 for removal in 3.0.0 as sanitization should be internal to * the class */ @Deprecated diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/AbstractRabbitListenerContainerFactoryConfigurer.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/AbstractRabbitListenerContainerFactoryConfigurer.java index 9877d08b95e..cf4ecb2fbe6 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/AbstractRabbitListenerContainerFactoryConfigurer.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/AbstractRabbitListenerContainerFactoryConfigurer.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2021 the original author or authors. + * Copyright 2012-2022 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. @@ -49,7 +49,7 @@ public abstract class AbstractRabbitListenerContainerFactoryConfigurer