I have two implementations of an interface. Both are OSGipublic interface MenuService {//...}and@Component( immediate = true, service = MenuService.class, name = "menuServiceImpl1")public interface MenuServiceImpl1 implements MenuService {//...}and@Component( immediate = true, service...