package sahoo.hello.impl; import sahoo.hello.api.Foo; import sahoo.hello.api.Bar; import org.jvnet.hk2.annotations.Inject; import org.jvnet.hk2.annotations.Service; @Service public class FooImpl implements Foo { @Inject Bar bar; public FooImpl() { System.out.println("FooImpl() called"); } public void doit() { bar.doit();} }