Did not work for me.I did the followingService code (in the first
bundle)public interface GodaDataServiceFactory { List
getData();}Service Impl Code (Another bundle - Second bundle, Note its a
factory)@Component( service = GodaDataServiceFactory.class, factory =
"GodaDataServiceFactory", configurationPolicy =
ConfigurationPolicy.REQUIRE)@Designate(ocd =
GodaDataServiceFactoryConfig.class, factory = true)public class
GodaDataServiceFactoryJcrImpl implements GodaDataServiceFactory {
private static...