Package org.jboss.resteasy.core
Interface Dispatcher
-
- All Known Implementing Classes:
AsynchronousDispatcher
,SynchronousDispatcher
public interface Dispatcher
- Version:
- $Revision: 1 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addHttpPreprocessor(HttpRequestPreprocessor httpPreprocessor)
java.util.Map<java.lang.Class,java.lang.Object>
getDefaultContextObjects()
ResteasyProviderFactory
getProviderFactory()
Registry
getRegistry()
javax.ws.rs.core.Response
internalInvocation(HttpRequest request, HttpResponse response, java.lang.Object entity)
void
invoke(HttpRequest in, HttpResponse response)
-
-
-
Method Detail
-
getProviderFactory
ResteasyProviderFactory getProviderFactory()
-
getRegistry
Registry getRegistry()
-
invoke
void invoke(HttpRequest in, HttpResponse response)
-
internalInvocation
javax.ws.rs.core.Response internalInvocation(HttpRequest request, HttpResponse response, java.lang.Object entity)
-
addHttpPreprocessor
void addHttpPreprocessor(HttpRequestPreprocessor httpPreprocessor)
-
getDefaultContextObjects
java.util.Map<java.lang.Class,java.lang.Object> getDefaultContextObjects()
-
-