public interface ResourceContext
This interface can be injected using the Context
annotation.
The resource context can be utilized when instances of managed resource classes are to be returned by sub-resource locator methods. Such instances will be injected and managed within the declared scope just like instances of root resource classes.
Modifier and Type | Method | Description |
---|---|---|
<T> T |
getResource(Class<T> resourceClass) |
Get a resolved instance of a resource or sub-resource class.
|
<T> T |
initResource(T resource) |
Initialize the resource or sub-resource instance.
|
<T> T getResource(Class<T> resourceClass)
The resolved resource instance is properly initialized in the context of the current request processing scope. The scope of the resolved resource instance depends on the managing container. For resources managed by the runtime container the default scope is per-request.
T
- the type of the resource class.resourceClass
- the resource class.null
.<T> T initResource(T resource)
T
- resource instance type.resource
- resource instance.Copyright (c) 2019 Eclipse Foundation. Licensed under Eclipse Foundation Specification License.