blob: b0811c96d5bc8575c8ec8d6e513b07628c8830b1 [file] [log] [blame]
package ds.annotations.test2;
import java.util.EventListener;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.ServiceScope;
@Component(scope = ServiceScope.BUNDLE, immediate = true)
public class NonSingletonFactoryOrImmediateComponent implements EventListener {
@Component(scope = ServiceScope.PROTOTYPE, factory = "foo")
public static class NonSingletonFactoryComponent implements EventListener {
}
}