Uses of Interface
ratpack.core.http.Request
-
Packages that use Request Package Description ratpack.core.handling The handling of application requests.ratpack.core.http The HTTP protocol.ratpack.test.handling Test fixtures for exercisingHandler
implementations without start a fullEmbeddedApp
. -
-
Uses of Request in ratpack.core.handling
Methods in ratpack.core.handling that return Request Modifier and Type Method Description Request
Context. getRequest()
The HTTP request.Request
RequestOutcome. getRequest()
The request.Methods in ratpack.core.handling with parameters of type Request Modifier and Type Method Description RequestId
RequestId.Generator. generate(Request request)
Generate the ID for the request. -
Uses of Request in ratpack.core.http
Fields in ratpack.core.http with type parameters of type Request Modifier and Type Field Description static com.google.common.reflect.TypeToken<Request>
Request. TYPE
A type token for this type.Methods in ratpack.core.http that return Request Modifier and Type Method Description <O> Request
Request. add(com.google.common.reflect.TypeToken<O> type, O object)
Adds a registry entry that is available by the given type.<O> Request
Request. add(Class<O> type, O object)
Adds a registry entry that is available by the given type.Request
Request. add(Object object)
Adds a registry entry.<O> Request
Request. addLazy(com.google.common.reflect.TypeToken<O> type, Supplier<? extends O> supplier)
Adds a lazily created entry to the registry.<O> Request
Request. addLazy(Class<O> type, Supplier<? extends O> supplier)
Adds a lazily created entry to the registry. -
Uses of Request in ratpack.test.handling
Methods in ratpack.test.handling with parameters of type Request Modifier and Type Method Description Handler
HandlerFactory. receive(Request request)
-