Make built-in RetryPolicy
implementations final
#35040
Labels
in: core
Issues in core modules (aop, beans, core, context, expression)
type: enhancement
A general enhancement
Milestone
The built-in
RetryPolicy
implementations are currently not declared asfinal
, which makes it technically possible to extend them.However, they are not actually designed to be extensible.
private
and do not have accessor methods.RetryExecution
implementations are alsoprivate
, which prevents reuse.In light of the above, we should make all built-in
RetryPolicy
implementationsfinal
.The text was updated successfully, but these errors were encountered: