Package org.jboss.resteasy.spi
Interface ConstructorInjector
- All Known Implementing Classes:
ConstructorInjectorImpl
public interface ConstructorInjector
- Version:
- $Revision: 1 $
-
Method Summary
Modifier and TypeMethodDescriptionconstruct outside the scope of an HTTP request.construct
(HttpRequest request, HttpResponse response) construct inside the scope of an HTTP request.Object[]
Create an arguments list from injectable tings outside the scope of an HTTP request.Object[]
injectableArguments
(HttpRequest request, HttpResponse response) Create an argument list inside the scope of an HTTP request.
-
Method Details
-
construct
Object construct()construct outside the scope of an HTTP request. Useful for singleton factories- Returns:
-
construct
Object construct(HttpRequest request, HttpResponse response) throws Failure, javax.ws.rs.WebApplicationException, ApplicationException construct inside the scope of an HTTP request.- Parameters:
request
-response
-- Returns:
- Throws:
Failure
javax.ws.rs.WebApplicationException
ApplicationException
-
injectableArguments
Object[] injectableArguments()Create an arguments list from injectable tings outside the scope of an HTTP request. Useful for singleton factories in cases where the resource factory wants to allocate the object itself, but wants resteasy to populate the arguments- Returns:
-
injectableArguments
Create an argument list inside the scope of an HTTP request. Useful in cases where the resource factory wants to allocate the object itself, but wants resteasy to populate the arguments- Parameters:
request
-response
-- Returns:
- Throws:
Failure
-