Package org.jboss.resteasy.core
Class PropertyInjectorImpl
java.lang.Object
org.jboss.resteasy.core.PropertyInjectorImpl
- All Implemented Interfaces:
 PropertyInjector
- Version:
 - $Revision: 1 $
 - Author:
 - Bill Burke
 
- 
Field Summary
Fields - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionInject values into annotated properties (fields/setter methods) of the target object.inject(HttpRequest request, HttpResponse response, Object target, boolean unwrapAsync) Inject values into annotated properties (fields/setter methods) of the target object.protected voidpopulateMap(Class<?> clazz, ResteasyProviderFactory factory)  
- 
Field Details
- 
fieldMap
 - 
setters
 - 
setterhashes
 - 
clazz
 
 - 
 - 
Constructor Details
- 
PropertyInjectorImpl
 
 - 
 - 
Method Details
- 
populateMap
 - 
inject
public CompletionStage<Void> inject(HttpRequest request, HttpResponse response, Object target, boolean unwrapAsync) throws Failure Description copied from interface:PropertyInjectorInject values into annotated properties (fields/setter methods) of the target object. This method should only be used inside the scope of an HTTP request.- Specified by:
 injectin interfacePropertyInjector- Parameters:
 request- http requestresponse- http responsetarget- target objectunwrapAsync- unwrap async- Returns:
 CompletionStageor null if async isn't needed- Throws:
 Failure- if application failure occurred
 - 
inject
Description copied from interface:PropertyInjectorInject values into annotated properties (fields/setter methods) of the target object. This method should only be used outside the scope of an HTTP request.- Specified by:
 injectin interfacePropertyInjector- Parameters:
 target- target objectunwrapAsync- unwrap async- Returns:
 CompletionStageor null if async isn't needed
 
 -