-
Notifications
You must be signed in to change notification settings - Fork 38.6k
Closed
Labels
in: coreIssues in core modules (aop, beans, core, context, expression)Issues in core modules (aop, beans, core, context, expression)type: enhancementA general enhancementA general enhancement
Milestone
Description
The built-in RetryPolicy
implementations are currently not declared as final
, which makes it technically possible to extend them.
However, they are not actually designed to be extensible.
- Their fields are
private
and do not have accessor methods. - Their
RetryExecution
implementations are alsoprivate
, which prevents reuse.
In light of the above, we should make all built-in RetryPolicy
implementations final
.
Metadata
Metadata
Assignees
Labels
in: coreIssues in core modules (aop, beans, core, context, expression)Issues in core modules (aop, beans, core, context, expression)type: enhancementA general enhancementA general enhancement