io.smallrye.beanbag.FieldInjector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smallrye-beanbag Show documentation
Show all versions of smallrye-beanbag Show documentation
A trivial programmatic bean container implementation
The newest version!
package io.smallrye.beanbag;
import java.lang.reflect.Field;
/**
* A field injection.
*/
final class FieldInjector implements Injector {
private final Field field;
private final BeanSupplier supplier;
FieldInjector(final Field field, final BeanSupplier supplier) {
this.field = field;
this.supplier = supplier;
}
public void injectInto(Scope scope, C instance) {
final T value;
try {
value = supplier.get(scope);
} catch (Throwable t) {
throw new InjectionException("Failed to acquire value from provider for field "
+ field.getDeclaringClass().getSimpleName() + "#" + field.getName() + " of object " + instance, t);
}
try {
field.set(instance, value);
} catch (IllegalAccessException e) {
throw new InjectionException("Failed to inject value " + value + " into field "
+ field.getDeclaringClass().getSimpleName() + "#" + field.getName() + " of object " + instance, e);
}
}
}