You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We already have generics on StateMachineConfigurerAdaptor. It should be possible to use those as qualifiers instead of having to set different names and use the string names as qualifiers.
With this we would no longer need to do @EnableStateMachineFactory(name="Foo")
- Modify StateMachineConfiguration and StateMachineFactoryConfiguration
so that if you have different states and events classes with multiple
machines or factories, you can autowire by types without
adding qualifiers.
- Manually try to discover generic types from enclosing adapther class
and if succesfull pass that information into bean definition
as ResolvableType.
- Fixesspring-projects#306
- Modify StateMachineConfiguration and StateMachineFactoryConfiguration
so that if you have different states and events classes with multiple
machines or factories, you can autowire by types without
adding qualifiers.
- Manually try to discover generic types from enclosing adapther class
and if succesfull pass that information into bean definition
as ResolvableType.
- Backporting #306
- Relates to #307
We already have generics on StateMachineConfigurerAdaptor. It should be possible to use those as qualifiers instead of having to set different names and use the string names as qualifiers.
With this we would no longer need to do
@EnableStateMachineFactory(name="Foo")
And use would be instead of
it would be
As they have different generics
The text was updated successfully, but these errors were encountered: