ItemIdentificationStrategy is a plain interface with a method taking a parameter of Item<?>, meaning that implementations can't be specialised to particular types of Item.
This hasn't been an issue for the existing implementations, which are all based around reading the item's item metadata. However, it does rule out the possibility of strategies which look at the actual Item.
ItemIdentificationStrategy
is a plain interface with a method taking a parameter ofItem<?>
, meaning that implementations can't be specialised to particular types ofItem
.This hasn't been an issue for the existing implementations, which are all based around reading the item's item metadata. However, it does rule out the possibility of strategies which look at the actual
Item
.This should become a generic interface.