Is it possible to pass a parameter to the @Qualifier("passedParameter")
when using spring with classes that implement the same interface.
so an interface that is say Customer
then three classes that implement Customer
are CustomerA
CustomerB
and CustomerC
then a class that autowires the Person
interface and I want to specify the particular class I want by passing a parameter into @Qualifier("CustomerA")
?