Interface ResourceInjector

All Known Subinterfaces:
WebServiceContextInjector
All Known Implementing Classes:
WebServiceContextInjectorImpl

public interface ResourceInjector
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    inject(Object resource, Object instance)
    Inject resource on Filed, Method or Class depending on how the @Resource annotation is defined.
    void
    injectOnClass(Object resource, Object instance, Class clazz)
    Resource will be injection on the class.
    void
    injectOnField(Object resource, Object instance, Field field)
    Resource will be injected on the field.
    void
    injectOnMethod(Object resource, Object instance, Method method)
    Resource will be injected on the Method.