Skip navigation links

Package org.wamblee.inject

This package provides a mini-framework for interfacing to existing dependency injection mechanisms.

See: Description

Package org.wamblee.inject Description

This package provides a mini-framework for interfacing to existing dependency injection mechanisms. This package does not provide dependency injection, but implementations are expected to implement it, usually by delegating to an existing dependency injection framework. The interfaces in this package provide independence on the actual framework chosen and also allow for better testability.

Users of the package

Users of this package will typically use:

For example, to inject into a given object, use:

   Injector injector = InjectorBuilder.getInjector();
   MyPojo pojo = new MyPojo();
   injector.inject(pojo);
 

Implementors of the package

Of interest to implementations of this package integrating with dependency injection frameworks are:

Class overview

Skip navigation links

Copyright © 2022. All rights reserved.