- H2Module - Class in ratpack.h2
-
- H2Module() - Constructor for class ratpack.h2.H2Module
-
- H2Module(String, String, String) - Constructor for class ratpack.h2.H2Module
-
- handle(Context) - Method in class ratpack.codahale.metrics.HealthCheckHandler
-
- handle(Context) - Method in class ratpack.codahale.metrics.MetricsWebsocketBroadcastHandler
-
- handle(GroovyContext) - Method in class ratpack.groovy.handling.GroovyHandler
-
The handle method to implement.
- handle(Context) - Method in class ratpack.groovy.handling.GroovyHandler
-
- handle(Handler, Closure<?>) - Static method in class ratpack.groovy.test.GroovyUnitTest
-
- handle(Action<? super Chain>, Closure<?>) - Static method in class ratpack.groovy.test.GroovyUnitTest
-
- handle(Context) - Method in interface ratpack.handling.Handler
-
Handles the context.
- handle(Context) - Method in class ratpack.handling.InjectionHandler
-
Invokes the custom "handle" method, extracting necessary parameters from the context to satisfy the call.
- handle(Handler) - Method in interface ratpack.test.handling.RequestFixture
-
Invokes the given handler with a newly created
Context
based on the state of this fixture.
- handle(Action<? super Chain>) - Method in interface ratpack.test.handling.RequestFixture
-
- handle(Handler) - Method in class ratpack.test.handling.RequestFixtureAction
-
Invokes the given handler with a newly created
Context
based on the state of this fixture.
- handle(Action<? super Chain>) - Method in class ratpack.test.handling.RequestFixtureAction
-
- handle(Handler, Action<? super RequestFixture>) - Static method in class ratpack.test.UnitTest
-
- handle(Action<? super Chain>, Action<? super RequestFixture>) - Static method in class ratpack.test.UnitTest
-
- handleAuthorization(Context, UserProfile) - Method in class ratpack.pac4j.AbstractAuthorizer
-
Unless overridden, all authenticated requests will be considered authorized.
- handleAuthorization(Context, UserProfile) - Method in interface ratpack.pac4j.Authorizer
-
Handles authorization for the given context.
- HandlebarsModule - Class in ratpack.handlebars
-
An extension module that provides support for Handlebars.java templating engine.
- HandlebarsModule() - Constructor for class ratpack.handlebars.HandlebarsModule
-
- handlebarsTemplate(String) - Static method in class ratpack.handlebars.Template
-
- handlebarsTemplate(Map<String, ?>, String) - Static method in class ratpack.handlebars.Template
-
- handlebarsTemplate(Map<String, ?>, String, String) - Static method in class ratpack.handlebars.Template
-
- handlebarsTemplate(String, T) - Static method in class ratpack.handlebars.Template
-
- handlebarsTemplate(String, T, String) - Static method in class ratpack.handlebars.Template
-
- handler(Closure<?>) - Method in interface ratpack.groovy.handling.GroovyChain
-
Adds the given Closure
as a Handler
to this GroovyChain
.
- handler(String, Closure<?>) - Method in interface ratpack.groovy.handling.GroovyChain
-
Adds a Handler
to this GroovyChain
that delegates to the given Closure
as a Handler
if the
relative path
matches the given path
exactly.
- handler(Handler) - Method in interface ratpack.groovy.handling.GroovyChain
-
Adds the given handler to this.
- handler(String, Handler) - Method in interface ratpack.groovy.handling.GroovyChain
-
Adds a handler that delegates to the given handler if the relative path
matches the given path
exactly.
- handler(Closure<?>) - Method in class ratpack.groovy.handling.GroovyChainAction
-
- handler(String, Closure<?>) - Method in class ratpack.groovy.handling.GroovyChainAction
-
- handler(Handler) - Method in class ratpack.groovy.handling.GroovyChainAction
-
- handler(String, Handler) - Method in class ratpack.groovy.handling.GroovyChainAction
-
- handler(LaunchConfig, Action<? super BindingsSpec>, Action<? super Chain>) - Static method in class ratpack.guice.Guice
-
Creates a handler that can be used as the entry point for a Guice backed Ratpack app.
- handler(LaunchConfig, Action<? super BindingsSpec>, Function<? super Injector, ? extends Handler>) - Static method in class ratpack.guice.Guice
-
Creates a handler that can be used as the entry point for a Guice backed Ratpack app.
- handler(LaunchConfig, Injector, Action<? super BindingsSpec>, Action<? super Chain>) - Static method in class ratpack.guice.Guice
-
Creates a handler that can be used as the entry point for a Guice backed Ratpack app.
- handler(LaunchConfig, Injector, Action<? super BindingsSpec>, Function<? super Injector, ? extends Handler>) - Static method in class ratpack.guice.Guice
-
Creates a handler that can be used as the entry point for a Guice backed Ratpack app.
- handler(Handler) - Method in interface ratpack.handling.Chain
-
Adds the given handler to this.
- handler(String, Handler) - Method in interface ratpack.handling.Chain
-
Adds a handler that delegates to the given handler if the relative path
matches the given path
exactly.
- handler(Handler) - Method in class ratpack.handling.ChainAction
-
- handler(String, Handler) - Method in class ratpack.handling.ChainAction
-
- Handler - Interface in ratpack.handling
-
A handler participates in the processing of a request/response pair, operating on a
Context
.
- HANDLER_FACTORY - Static variable in class ratpack.launch.LaunchConfigs.Property
-
The full qualified classname of the handler factory (required).
- HandlerDecoratingModule - Interface in ratpack.guice
-
A Guice module that contributes to the default handler setup.
- HandlerFactory - Interface in ratpack.launch
-
A factory contract for creating handlers, typically the root handler of the application.
- handlers(Closure<?>) - Method in interface ratpack.groovy.Groovy.Ratpack
-
Registers the closure used to build the handler chain of the application.
- handlers(Closure<?>) - Method in class ratpack.groovy.test.embed.ClosureBackedEmbeddedApplication
-
Specifies the handlers of the application.
- Handlers - Class in ratpack.handling
-
Factory methods for handler decorations.
- HandlerTimeoutException - Exception in ratpack.test.handling
-
Thrown when a handler under test takes too long to produce a result.
- HandlerTimeoutException(HandlingResult, int) - Constructor for exception ratpack.test.handling.HandlerTimeoutException
-
Constructor.
- HandlingResult - Interface in ratpack.test.handling
-
Represents the result of testing one or more handlers.
- hashCode() - Method in class ratpack.registry.PredicateCacheability.CacheKey
-
- head() - Method in interface ratpack.groovy.test.TestHttpClient
-
- head(String) - Method in interface ratpack.groovy.test.TestHttpClient
-
- header(String, String, Handler) - Method in interface ratpack.groovy.handling.GroovyChain
-
Adds a handler to the chain that delegates to the given handler if the request has a header with the given name and a its value matches the given value exactly.
- header(String, String, Closure<?>) - Method in interface ratpack.groovy.handling.GroovyChain
-
Adds a Handler
to this GroovyChain
that delegates to the given Closure
as a Handler
if the request
has a HTTPHeader
with the given name and a it's value matches the given value exactly.
- header(String, String, Handler) - Method in class ratpack.groovy.handling.GroovyChainAction
-
- header(String, String, Closure<?>) - Method in class ratpack.groovy.handling.GroovyChainAction
-
- header(String, String) - Method in interface ratpack.groovy.test.handling.GroovyRequestFixture
-
- header(String, String, Handler) - Method in interface ratpack.handling.Chain
-
Adds a handler to the chain that delegates to the given handler if the request has a header with the given name and a its value matches the given value exactly.
- header(String, String, Handler) - Method in class ratpack.handling.ChainAction
-
- header(String, String, Handler) - Static method in class ratpack.handling.Handlers
-
Creates a handler that delegates to the given handler if the request
has a HTTPHeader
with the
given name and a it's value matches the given value exactly.
- header(String, String) - Method in interface ratpack.test.handling.RequestFixture
-
Set a request header value.
- header(String, String) - Method in class ratpack.test.handling.RequestFixtureAction
-
Set a request header value.
- Headers - Interface in ratpack.http
-
An immutable set of HTTP headers.
- HealthCheckHandler - Class in ratpack.codahale.metrics
-
A Handler that runs and renders health checks.
- HealthCheckHandler() - Constructor for class ratpack.codahale.metrics.HealthCheckHandler
-
- HealthCheckHandler(String) - Constructor for class ratpack.codahale.metrics.HealthCheckHandler
-
- HealthCheckResults - Interface in ratpack.codahale.metrics
-
- healthChecks() - Method in class ratpack.codahale.metrics.CodaHaleMetricsModule
-
Enables the automatic registering of health checks.
- hikariConfig(LaunchConfig) - Method in class ratpack.hikari.HikariModule
-
- HikariModule - Class in ratpack.hikari
-
An extension module that provides support for HikariCP JDBC connection pool.
- HikariModule() - Constructor for class ratpack.hikari.HikariModule
-
- HikariModule(Map<String, String>, String) - Constructor for class ratpack.hikari.HikariModule
-
- HikariModule(Map<String, String>, String, Integer, Integer) - Constructor for class ratpack.hikari.HikariModule
-
- html(Closure<?>) - Method in interface ratpack.groovy.handling.GroovyByContentHandler
-
Convenience method to respond with "text/html" mime type.
- html(Object) - Method in interface ratpack.groovy.templating.TemplateScript
-
Escapes the toString() value of the given object, by way of com.google.common.html.HtmlEscapers
.
- html(Runnable) - Method in interface ratpack.handling.ByContentHandler
-
Convenience method to respond with "text/html" mime type.
- htmlBuilder(Closure<?>) - Static method in class ratpack.groovy.Groovy
-
- HttpClient - Interface in ratpack.http.client
-
- httpClient(LaunchConfig) - Static method in class ratpack.http.client.HttpClients
-
- HttpClients - Class in ratpack.http.client
-
- HttpMethod - Interface in ratpack.http
-
The method of a HTTP request.
- HystrixRatpack - Class in ratpack.hystrix
-
- HystrixRatpack() - Constructor for class ratpack.hystrix.HystrixRatpack
-