Inject list of objects in CDI (Weld)
Let's say I have an interface called SocialNetworkService, and three implementations - TwitterService, FacebookService and FriendFeedService. Now I want, whenever my managed bean (or whatever web component) receives a message, to share it in all social networks. I tried: @Inject private List<SocialNetworkService> socialNetworkServices;...