Review implementation and API of AbstractItemMetadataSelectionStage group

Description

The following four classes have a very complicated API and implementation:

  • AbstractItemMetadataSelectionStage

  • StatusMetadataLoggingStage

  • ItemMetadataFilterStage

  • ItemMetadataTerminationStage

The basic implementation generates and uses as part of the implementation API the following:

HashMap<Class<? extends ItemMetadata>, List<? extends ItemMetadata>>

This requires a lot of fix-up in the implementation classes because there is no binding between the types of the key and value list, although they are in fact by definition identical. This is the contract implemented by ClassToInstanceMultimap#get.

I think this would work a lot better if:

  • The abstract class took a second, type bound, parameter B,

  • Reimplement everything in terms of a ClassToInstanceMultimap<B<,

  • In the case of StatusMetadataLoggingStage, a type bound of StatusMetadata,

  • In the other subclasses, a type bound of ItemMetadata

This does involve an API change, but I doubt there are any other subclasses. It might be safest to turn that into an impl class, though.

The only deployment-level issue this might cause would be if someone had (wrongly) configured StatusMetadataLoggingStage with something that wasn't a StatusMetadata. That wouldn't have done anything, but would now probably result in a class cast or perhaps a compilation error.

Environment

None

Activity

Show:

Ian YoungSeptember 28, 2020 at 1:22 PM

Done, commit 39ca7cecd9da9ed5d788f9998ea758dcb2ac67ea.

Done

Details

Assignee

Reporter

Fix versions

Affects versions

Created September 25, 2020 at 5:22 PM
Updated May 16, 2024 at 12:37 PM
Resolved September 28, 2020 at 1:28 PM