import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
@Component
public class MyService {
@Reference
private AnotherService anotherService;
public void doSomething() {
System.out.println("Doing something with " + anotherService.getSomeValue());
}
}