Interface PropertyInjector
- All Known Implementing Classes:
CdiPropertyInjector
,PropertyInjectorImpl
,ResourcePropertyInjector
public interface PropertyInjector
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
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.
-
Method Details
-
inject
Inject values into annotated properties (fields/setter methods) of the target object. This method should only be used outside the scope of an HTTP request.- Parameters:
target
- target objectunwrapAsync
- unwrap async- Returns:
CompletionStage
or null if async isn't needed
-
inject
CompletionStage<Void> inject(HttpRequest request, HttpResponse response, Object target, boolean unwrapAsync) throws Failure, jakarta.ws.rs.WebApplicationException, ApplicationException Inject values into annotated properties (fields/setter methods) of the target object. This method should only be used inside the scope of an HTTP request.- Parameters:
request
- http requestresponse
- http responsetarget
- target objectunwrapAsync
- unwrap async- Returns:
CompletionStage
or null if async isn't needed- Throws:
Failure
- if application failure occurredjakarta.ws.rs.WebApplicationException
- if application exception occurredApplicationException
-