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 exercisingHandlerimplementations without start a fullEmbeddedApp. -
-
Uses of Request in ratpack.core.handling
Methods in ratpack.core.handling that return Request Modifier and Type Method Description RequestContext. getRequest()The HTTP request.RequestRequestOutcome. getRequest()The request.Methods in ratpack.core.handling with parameters of type Request Modifier and Type Method Description RequestIdRequestId.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. TYPEA type token for this type.Methods in ratpack.core.http that return Request Modifier and Type Method Description <O> RequestRequest. add(com.google.common.reflect.TypeToken<O> type, O object)Adds a registry entry that is available by the given type.<O> RequestRequest. add(Class<O> type, O object)Adds a registry entry that is available by the given type.RequestRequest. add(Object object)Adds a registry entry.<O> RequestRequest. addLazy(com.google.common.reflect.TypeToken<O> type, Supplier<? extends O> supplier)Adds a lazily created entry to the registry.<O> RequestRequest. 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 HandlerHandlerFactory. receive(Request request)
-