Merge branch '3.4.x'

Closes gh-44993
This commit is contained in:
Phillip Webb
2025-04-03 18:03:09 -07:00
149 changed files with 160 additions and 160 deletions

View File

@@ -41,7 +41,7 @@ public abstract class AbstractExposableEndpoint<O extends Operation> implements
* @param id the endpoint id
* @param enabledByDefault if the endpoint is enabled by default
* @param operations the endpoint operations
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
* {@link #AbstractExposableEndpoint(EndpointId, Access, Collection)}
*/
@Deprecated(since = "3.4.0", forRemoval = true)

View File

@@ -37,7 +37,7 @@ public interface ExposableEndpoint<O extends Operation> {
/**
* Returns if the endpoint is enabled by default.
* @return if the endpoint is enabled by default
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
* {@link #getDefaultAccess()}
*/
@Deprecated(since = "3.4.0", forRemoval = true)

View File

@@ -48,7 +48,7 @@ public abstract class AbstractDiscoveredEndpoint<O extends Operation> extends Ab
* @param id the ID of the endpoint
* @param enabledByDefault if the endpoint is enabled by default
* @param operations the endpoint operations
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
* {@link #AbstractDiscoveredEndpoint(EndpointDiscoverer, Object, EndpointId, Access, Collection)}
*/
@SuppressWarnings("removal")

View File

@@ -66,7 +66,7 @@ public @interface Endpoint {
/**
* If the endpoint should be enabled or disabled by default.
* @return {@code true} if the endpoint is enabled by default
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of {@link #defaultAccess()}
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of {@link #defaultAccess()}
*/
@Deprecated(since = "3.4.0", forRemoval = true)
boolean enableByDefault() default true;

View File

@@ -90,7 +90,7 @@ public abstract class EndpointDiscoverer<E extends ExposableEndpoint<O>, O exten
* @param parameterValueMapper the parameter value mapper
* @param invokerAdvisors invoker advisors to apply
* @param endpointFilters endpoint filters to apply
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
* {@link #EndpointDiscoverer(ApplicationContext, ParameterValueMapper, Collection, Collection, Collection)}
*/
@Deprecated(since = "3.4.0", forRemoval = true)
@@ -388,7 +388,7 @@ public abstract class EndpointDiscoverer<E extends ExposableEndpoint<O>, O exten
* @param enabledByDefault if the endpoint is enabled by default
* @param operations the endpoint operations
* @return a created endpoint (a {@link DiscoveredEndpoint} is recommended)
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
* {@link #createEndpoint(Object, EndpointId, Access, Collection)}
*/
@Deprecated(since = "3.4.0", forRemoval = true)

View File

@@ -51,7 +51,7 @@ public @interface JmxEndpoint {
/**
* If the endpoint should be enabled or disabled by default.
* @return {@code true} if the endpoint is enabled by default
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
*/
@Deprecated(since = "3.4.0", forRemoval = true)
@AliasFor(annotation = Endpoint.class)

View File

@@ -54,7 +54,7 @@ public class JmxEndpointDiscoverer extends EndpointDiscoverer<ExposableJmxEndpoi
* @param parameterValueMapper the parameter value mapper
* @param invokerAdvisors invoker advisors to apply
* @param endpointFilters endpoint filters to apply
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
* {@link #JmxEndpointDiscoverer(ApplicationContext, ParameterValueMapper, Collection, Collection, Collection)}
*/
@Deprecated(since = "3.4.0", forRemoval = true)

View File

@@ -51,7 +51,7 @@ public @interface WebEndpoint {
/**
* If the endpoint should be enabled or disabled by default.
* @return {@code true} if the endpoint is enabled by default
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of {@link #defaultAccess()}
*/
@Deprecated(since = "3.4.0", forRemoval = true)
@AliasFor(annotation = Endpoint.class)

View File

@@ -67,7 +67,7 @@ public class WebEndpointDiscoverer extends EndpointDiscoverer<ExposableWebEndpoi
* @param endpointPathMappers the endpoint path mappers
* @param invokerAdvisors invoker advisors to apply
* @param filters filters to apply
* @deprecated since 3.4.0 for removal in 3.6.0 in favor of
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of
* {@link #WebEndpointDiscoverer(ApplicationContext, ParameterValueMapper, EndpointMediaTypes, List, List, Collection, Collection, Collection)}
*/
@Deprecated(since = "3.4.0", forRemoval = true)