A B C D E G H I J L M O P R S T 
All Classes All Packages

A

AbstractServerFactory - Class in io.dropwizard.core.server
A base class for ServerFactory implementations.
AbstractServerFactory() - Constructor for class io.dropwizard.core.server.AbstractServerFactory
 
addBundle(ConfiguredBundle<? super T>) - Method in class io.dropwizard.core.setup.Bootstrap
Adds the given bundle to the bootstrap.
addCommand(Command) - Method in class io.dropwizard.core.setup.Bootstrap
Adds the given command to the bootstrap.
addCommand(ConfiguredCommand<T>) - Method in class io.dropwizard.core.setup.Bootstrap
Adds the given command to the bootstrap.
addDefaultCommands(Bootstrap<T>) - Method in class io.dropwizard.core.Application
Called by Application.run(String...) to add the standard "server" and "check" commands
addFileArgument(Subparser) - Method in class io.dropwizard.core.cli.ConfiguredCommand
Adds the configuration file argument for the configured command.
addRequestLog(Server, Handler, String) - Method in class io.dropwizard.core.server.AbstractServerFactory
Deprecated.
Jetty 12 removes the RequestLogHandler. Therefore, the signature of this method will be changed to void addRequestLog(Server server, String name, MutableServletContextHandler servletContextHandler).
addStatsHandler(Handler) - Method in class io.dropwizard.core.server.AbstractServerFactory
Deprecated.
Graceful shutdown isn't performed with the StatisticsHandler in Jetty 12 anymore and metrics are collected with InstrumentedHandlers. Will be replaced by a method with signature Handler addGracefulHandler(Handler handler)
addTask(Task) - Method in class io.dropwizard.core.setup.AdminEnvironment
Adds the given task to the set of tasks exposed via the admin interface.
admin() - Method in class io.dropwizard.core.setup.Environment
Returns the application's AdminEnvironment.
AdminEnvironment - Class in io.dropwizard.core.setup
The administrative environment of a Dropwizard application.
AdminEnvironment(MutableServletContextHandler, HealthCheckRegistry, MetricRegistry, AdminFactory) - Constructor for class io.dropwizard.core.setup.AdminEnvironment
Creates a new AdminEnvironment.
AdminFactory - Class in io.dropwizard.core.setup
A factory for configuring the admin interface for the environment.
AdminFactory() - Constructor for class io.dropwizard.core.setup.AdminFactory
 
Application<T extends Configuration> - Class in io.dropwizard.core
The base class for Dropwizard applications.
Application() - Constructor for class io.dropwizard.core.Application
 

B

Bootstrap<T extends Configuration> - Class in io.dropwizard.core.setup
The pre-start application environment, containing everything required to bootstrap a Dropwizard command.
Bootstrap(Application<T>) - Constructor for class io.dropwizard.core.setup.Bootstrap
Creates a new Bootstrap for the given application.
bootstrapLogging() - Method in class io.dropwizard.core.Application
 
bootstrapLogLevel() - Method in class io.dropwizard.core.Application
The log level at which to bootstrap logging on application startup.
build(Environment) - Method in class io.dropwizard.core.server.DefaultServerFactory
 
build(Environment) - Method in interface io.dropwizard.core.server.ServerFactory
Build a server for the given Dropwizard application.
build(Environment) - Method in class io.dropwizard.core.server.SimpleServerFactory
 
buildGzipHandler(Handler) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
buildServer(LifecycleEnvironment, ThreadPool) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
buildSetUIDListener() - Method in class io.dropwizard.core.server.AbstractServerFactory
 

C

CheckCommand<T extends Configuration> - Class in io.dropwizard.core.cli
Parses and validates the application's configuration.
CheckCommand(Application<T>) - Constructor for class io.dropwizard.core.cli.CheckCommand
 
cleanup() - Method in class io.dropwizard.core.cli.ConfiguredCommand
 
cleanupAsynchronously() - Method in class io.dropwizard.core.cli.ConfiguredCommand
 
Cli - Class in io.dropwizard.core.cli
The command-line runner for Dropwizard application.
Cli(JarLocation, Bootstrap<?>, OutputStream, OutputStream) - Constructor for class io.dropwizard.core.cli.Cli
Create a new CLI interface for a application and its bootstrapped environment.
Command - Class in io.dropwizard.core.cli
A basic CLI command.
Command(String, String) - Constructor for class io.dropwizard.core.cli.Command
Create a new command with the given name and description.
Configuration - Class in io.dropwizard.core
An object representation of the YAML configuration file.
Configuration() - Constructor for class io.dropwizard.core.Configuration
 
configure() - Method in class io.dropwizard.core.setup.ExceptionMapperBinder
 
configure(Environment) - Method in class io.dropwizard.core.server.DefaultServerFactory
 
configure(Environment) - Method in interface io.dropwizard.core.server.ServerFactory
Configures the given environment with settings defined in the factory.
configure(Environment) - Method in class io.dropwizard.core.server.SimpleServerFactory
 
configure(FeatureContext) - Method in class io.dropwizard.core.validation.InjectValidatorFeature
 
configure(Subparser) - Method in class io.dropwizard.core.cli.Command
Configure the command's Subparser.
configure(Subparser) - Method in class io.dropwizard.core.cli.ConfiguredCommand
Configure the command's Subparser.
ConfiguredBundle<T> - Interface in io.dropwizard.core
A reusable bundle of functionality, used to define blocks of application behavior that are conditional on configuration parameters.
ConfiguredCommand<T extends Configuration> - Class in io.dropwizard.core.cli
A command whose first parameter is the location of a YAML configuration file.
ConfiguredCommand(String, String) - Constructor for class io.dropwizard.core.cli.ConfiguredCommand
 
createAdminServlet(Server, MutableServletContextHandler, MetricRegistry, HealthCheckRegistry, AdminEnvironment) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
createAppServlet(Server, JerseyEnvironment, ObjectMapper, Validator, MutableServletContextHandler, Servlet, MetricRegistry) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
createThreadPool(MetricRegistry) - Method in class io.dropwizard.core.server.AbstractServerFactory
 

D

DefaultServerFactory - Class in io.dropwizard.core.server
The default implementation of ServerFactory, which allows for multiple sets of application and admin connectors, all running on separate ports.
DefaultServerFactory() - Constructor for class io.dropwizard.core.server.DefaultServerFactory
 

E

Environment - Class in io.dropwizard.core.setup
A Dropwizard application's environment.
Environment(String) - Constructor for class io.dropwizard.core.setup.Environment
Creates an environment with the system classloader, default object mapper, default validator factory, default health check registry, and default configuration for tests.
Environment(String, ObjectMapper, ValidatorFactory, MetricRegistry, ClassLoader, HealthCheckRegistry, Configuration) - Constructor for class io.dropwizard.core.setup.Environment
Creates a new environment.
EnvironmentCommand<T extends Configuration> - Class in io.dropwizard.core.cli
A command which executes with a configured Environment.
EnvironmentCommand(Application<T>, String, String) - Constructor for class io.dropwizard.core.cli.EnvironmentCommand
Creates a new environment command.
ExceptionMapperBinder - Class in io.dropwizard.core.setup
A binder that registers all the default exception mappers while allowing users to override individual exception mappers without disabling all others.
ExceptionMapperBinder(boolean) - Constructor for class io.dropwizard.core.setup.ExceptionMapperBinder
 
execute(Map<String, List<String>>, PrintWriter) - Method in class io.dropwizard.core.sslreload.SslReloadTask
 

G

getAdminConnectors() - Method in class io.dropwizard.core.server.DefaultServerFactory
 
getAdminContext() - Method in class io.dropwizard.core.setup.Environment
 
getAdminContextPath() - Method in class io.dropwizard.core.server.DefaultServerFactory
 
getAdminContextPath() - Method in class io.dropwizard.core.server.SimpleServerFactory
 
getAdminFactory() - Method in class io.dropwizard.core.Configuration
Returns the admin interface-specific section of the configuration file.
getAdminMaxThreads() - Method in class io.dropwizard.core.server.DefaultServerFactory
 
getAdminMinThreads() - Method in class io.dropwizard.core.server.DefaultServerFactory
 
getAllowedMethods() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getApplication() - Method in class io.dropwizard.core.setup.Bootstrap
Returns the bootstrap's Application.
getApplicationConnectors() - Method in class io.dropwizard.core.server.DefaultServerFactory
 
getApplicationContext() - Method in class io.dropwizard.core.setup.Environment
 
getApplicationContextPath() - Method in class io.dropwizard.core.server.DefaultServerFactory
 
getApplicationContextPath() - Method in class io.dropwizard.core.server.SimpleServerFactory
 
getClassLoader() - Method in class io.dropwizard.core.setup.Bootstrap
Returns the bootstrap's class loader.
getCommands() - Method in class io.dropwizard.core.setup.Bootstrap
Returns the application's commands.
getConfiguration() - Method in class io.dropwizard.core.cli.ConfiguredCommand
Returns the parsed configuration or null if it hasn't been parsed yet.
getConfigurationClass() - Method in class io.dropwizard.core.Application
Returns the Class of the configuration class type parameter.
getConfigurationClass() - Method in class io.dropwizard.core.cli.CheckCommand
 
getConfigurationClass() - Method in class io.dropwizard.core.cli.ConfiguredCommand
Returns the Class of the configuration type.
getConfigurationClass() - Method in class io.dropwizard.core.cli.ServerCommand
 
getConfigurationFactoryFactory() - Method in class io.dropwizard.core.setup.Bootstrap
 
getConfigurationSourceProvider() - Method in class io.dropwizard.core.setup.Bootstrap
Returns the bootstrap's ConfigurationSourceProvider.
getConnector() - Method in class io.dropwizard.core.server.SimpleServerFactory
 
getDescription() - Method in class io.dropwizard.core.cli.Command
Returns the command's description.
getDetailedJsonProcessingExceptionMapper() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getDumpAfterStart() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getDumpBeforeStop() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getEnableThreadNameFilter() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getEnvironment() - Method in class io.dropwizard.core.cli.EnvironmentCommand
Returns the constructed environment or null if it hasn't been constructed yet.
getGid() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getGroup() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getGzipFilterFactory() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getHealthCheckExecutorService() - Method in class io.dropwizard.core.setup.Environment
Returns an ExecutorService to run time bound health checks
getHealthCheckRegistry() - Method in class io.dropwizard.core.setup.Bootstrap
returns the health check registry
getHealthChecks() - Method in class io.dropwizard.core.setup.AdminFactory
 
getHealthFactory() - Method in class io.dropwizard.core.Configuration
Returns the health interface-specific section of the configuration file.
getIdleThreadTimeout() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getJerseyRootPath() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getJerseyServletContainer() - Method in class io.dropwizard.core.setup.Environment
 
getJmxReporter() - Method in class io.dropwizard.core.setup.Bootstrap
Returns the JmxReporter registered with the bootstrap's MetricRegistry.
getLoggingFactory() - Method in class io.dropwizard.core.Configuration
Returns the logging-specific section of the configuration file.
getMaxQueuedRequests() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getMaxThreads() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getMaxThreads() - Method in class io.dropwizard.core.setup.HealthCheckConfiguration
 
getMetricPrefix() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getMetricRegistry() - Method in class io.dropwizard.core.setup.Bootstrap
Returns the application metrics.
getMetricsFactory() - Method in class io.dropwizard.core.Configuration
 
getMinThreads() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getMinThreads() - Method in class io.dropwizard.core.setup.HealthCheckConfiguration
 
getName() - Method in class io.dropwizard.core.Application
Returns the name of the application.
getName() - Method in class io.dropwizard.core.cli.Command
Returns the command's name.
getName() - Method in class io.dropwizard.core.setup.Environment
Returns the application's name.
getNofileHardLimit() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getNofileSoftLimit() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getObjectMapper() - Method in class io.dropwizard.core.setup.Bootstrap
Returns the bootstrap's ObjectMapper.
getObjectMapper() - Method in class io.dropwizard.core.setup.Environment
Returns the application's ObjectMapper.
getRegisterDefaultExceptionMappers() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getReloaders() - Method in class io.dropwizard.core.sslreload.SslReloadTask
 
getRequestLogFactory() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getResponseMeteredLevel() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getServerFactory() - Method in class io.dropwizard.core.Configuration
Returns the server-specific section of the configuration file.
getServerPush() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getShutdownGracePeriod() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getStartsAsRoot() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getStdErr() - Method in class io.dropwizard.core.cli.Cli
 
getStdOut() - Method in class io.dropwizard.core.cli.Cli
 
getTasks() - Method in class io.dropwizard.core.setup.AdminFactory
 
getThreadFactory(boolean) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getUid() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getUmask() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getUser() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getValidator() - Method in class io.dropwizard.core.setup.Environment
Returns the application's Validator.
getValidatorFactory() - Method in class io.dropwizard.core.setup.Bootstrap
Returns the application's validator factory.
getVirtualThreadsExecutorService() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
getWorkQueueSize() - Method in class io.dropwizard.core.setup.HealthCheckConfiguration
 

H

health() - Method in class io.dropwizard.core.setup.Environment
Returns the application's HealthEnvironment.
HealthCheckConfiguration - Class in io.dropwizard.core.setup
A factory for configuring the health check sub-system for the environment.
HealthCheckConfiguration() - Constructor for class io.dropwizard.core.setup.HealthCheckConfiguration
 
healthChecks() - Method in class io.dropwizard.core.setup.Environment
Returns the application's HealthCheckRegistry.

I

initialize(Bootstrap<?>) - Method in interface io.dropwizard.core.ConfiguredBundle
Initializes the application bootstrap.
initialize(Bootstrap<T>) - Method in class io.dropwizard.core.Application
Initializes the application bootstrap.
InjectValidatorFeature - Class in io.dropwizard.core.validation
 
InjectValidatorFeature(ValidatorFactory) - Constructor for class io.dropwizard.core.validation.InjectValidatorFeature
 
io.dropwizard.core - package io.dropwizard.core
 
io.dropwizard.core.cli - package io.dropwizard.core.cli
 
io.dropwizard.core.server - package io.dropwizard.core.server
 
io.dropwizard.core.setup - package io.dropwizard.core.setup
 
io.dropwizard.core.sslreload - package io.dropwizard.core.sslreload
 
io.dropwizard.core.validation - package io.dropwizard.core.validation
 
isEnableAdminVirtualThreads() - Method in class io.dropwizard.core.server.DefaultServerFactory
 
isEnableVirtualThreads() - Method in class io.dropwizard.core.server.AbstractServerFactory
 
isHealthCheckServletEnabled() - Method in class io.dropwizard.core.setup.AdminEnvironment
 
isServletEnabled() - Method in class io.dropwizard.core.setup.HealthCheckConfiguration
 
isShowDetails() - Method in class io.dropwizard.core.setup.ExceptionMapperBinder
 
isThreadPoolSizedCorrectly() - Method in class io.dropwizard.core.server.AbstractServerFactory
 

J

jersey() - Method in class io.dropwizard.core.setup.Environment
Returns the application's JerseyEnvironment.

L

lifecycle() - Method in class io.dropwizard.core.setup.Environment
Returns the application's LifecycleEnvironment.

M

metrics() - Method in class io.dropwizard.core.setup.Environment
Returns the application's MetricRegistry.

O

onError(Cli, Namespace, Throwable) - Method in class io.dropwizard.core.cli.CheckCommand
 
onError(Cli, Namespace, Throwable) - Method in class io.dropwizard.core.cli.Command
Method is called if there is an issue parsing configuration, setting up the environment, or running the command itself.
onFatalError(Throwable) - Method in class io.dropwizard.core.Application
Called by Application.run(String...) to indicate there was a fatal error running the requested command.

P

printBanner(String) - Method in class io.dropwizard.core.server.AbstractServerFactory
 

R

registerMetrics() - Method in class io.dropwizard.core.setup.Bootstrap
Registers the JVM metrics to the metric registry and start to report the registry metrics via JMX.
run(Configuration, Environment) - Method in class io.dropwizard.core.sslreload.SslReloadBundle
 
run(Bootstrap<?>, Namespace) - Method in class io.dropwizard.core.cli.Command
Executes when the user runs this specific command.
run(Bootstrap<?>, Namespace) - Method in class io.dropwizard.core.cli.ConfiguredCommand
 
run(Bootstrap<T>, Namespace, T) - Method in class io.dropwizard.core.cli.CheckCommand
 
run(Bootstrap<T>, Namespace, T) - Method in class io.dropwizard.core.cli.ConfiguredCommand
Runs the command with the given Bootstrap and Configuration.
run(Bootstrap<T>, Namespace, T) - Method in class io.dropwizard.core.cli.EnvironmentCommand
 
run(Environment, Namespace, T) - Method in class io.dropwizard.core.cli.EnvironmentCommand
Runs the command with the given Environment and Configuration.
run(Environment, Namespace, T) - Method in class io.dropwizard.core.cli.ServerCommand
 
run(String...) - Method in class io.dropwizard.core.Application
Parses command-line arguments and runs the application.
run(String...) - Method in class io.dropwizard.core.cli.Cli
Runs the command line interface given some arguments.
run(T, Environment) - Method in class io.dropwizard.core.Application
When the application runs, this is called after the ConfiguredBundles are run.
run(T, Environment) - Method in interface io.dropwizard.core.ConfiguredBundle
Initializes the environment.
run(T, Environment) - Method in class io.dropwizard.core.setup.Bootstrap
Runs the bootstrap's bundles with the given configuration and environment.

S

ServerCommand<T extends Configuration> - Class in io.dropwizard.core.cli
Runs a application as an HTTP server.
ServerCommand(Application<T>) - Constructor for class io.dropwizard.core.cli.ServerCommand
 
ServerCommand(Application<T>, String, String) - Constructor for class io.dropwizard.core.cli.ServerCommand
A constructor to allow reuse of the server command as a different name
ServerFactory - Interface in io.dropwizard.core.server
A factory for building Server instances for Dropwizard applications.
servlets() - Method in class io.dropwizard.core.setup.Environment
Returns the application's ServletEnvironment.
setAdminConnectors(List<ConnectorFactory>) - Method in class io.dropwizard.core.server.DefaultServerFactory
 
setAdminContextPath(String) - Method in class io.dropwizard.core.server.DefaultServerFactory
 
setAdminContextPath(String) - Method in class io.dropwizard.core.server.SimpleServerFactory
 
setAdminFactory(AdminFactory) - Method in class io.dropwizard.core.Configuration
Sets the admin interface-specific section of the configuration file.
setAdminMaxThreads(int) - Method in class io.dropwizard.core.server.DefaultServerFactory
 
setAdminMinThreads(int) - Method in class io.dropwizard.core.server.DefaultServerFactory
 
setAllowedMethods(Set<String>) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setApplicationConnectors(List<ConnectorFactory>) - Method in class io.dropwizard.core.server.DefaultServerFactory
 
setApplicationContextPath(String) - Method in class io.dropwizard.core.server.DefaultServerFactory
 
setApplicationContextPath(String) - Method in class io.dropwizard.core.server.SimpleServerFactory
 
setClassLoader(ClassLoader) - Method in class io.dropwizard.core.setup.Bootstrap
Sets the bootstrap's class loader.
setConfigurationFactoryFactory(ConfigurationFactoryFactory<T>) - Method in class io.dropwizard.core.setup.Bootstrap
 
setConfigurationSourceProvider(ConfigurationSourceProvider) - Method in class io.dropwizard.core.setup.Bootstrap
Sets the bootstrap's ConfigurationSourceProvider.
setConnector(ConnectorFactory) - Method in class io.dropwizard.core.server.SimpleServerFactory
 
setDetailedJsonProcessingExceptionMapper(Boolean) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setDumpAfterStart(boolean) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setDumpBeforeStop(boolean) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setEnableAdminVirtualThreads(boolean) - Method in class io.dropwizard.core.server.DefaultServerFactory
 
setEnableThreadNameFilter(boolean) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setEnableVirtualThreads(boolean) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setGid(Integer) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setGroup(String) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setGzipFilterFactory(GzipHandlerFactory) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setHealthCheckRegistry(HealthCheckRegistry) - Method in class io.dropwizard.core.setup.Bootstrap
 
setHealthChecks(HealthCheckConfiguration) - Method in class io.dropwizard.core.setup.AdminFactory
 
setHealthFactory(HealthFactory) - Method in class io.dropwizard.core.Configuration
Sets the health interface-specific section of the configuration file.
setIdleThreadTimeout(Duration) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setJerseyRootPath(String) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setLoggingFactory(LoggingFactory) - Method in class io.dropwizard.core.Configuration
Sets the logging-specific section of the configuration file.
setMaxQueuedRequests(int) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setMaxThreads(int) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setMaxThreads(int) - Method in class io.dropwizard.core.setup.HealthCheckConfiguration
 
setMetricRegistry(MetricRegistry) - Method in class io.dropwizard.core.setup.Bootstrap
Sets a custom registry for the application metrics.
setMetricsFactory(MetricsFactory) - Method in class io.dropwizard.core.Configuration
 
setMinThreads(int) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setMinThreads(int) - Method in class io.dropwizard.core.setup.HealthCheckConfiguration
 
setNofileHardLimit(Integer) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setNofileSoftLimit(Integer) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setObjectMapper(ObjectMapper) - Method in class io.dropwizard.core.setup.Bootstrap
Sets the given ObjectMapper to the bootstrap.
setRegisterDefaultExceptionMappers(Boolean) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setReloaders(Collection<SslReload>) - Method in class io.dropwizard.core.sslreload.SslReloadTask
 
setRequestLogFactory(RequestLogFactory<?>) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setServerFactory(ServerFactory) - Method in class io.dropwizard.core.Configuration
Sets the HTTP-specific section of the configuration file.
setServerPush(ServerPushFilterFactory) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setServletEnabled(boolean) - Method in class io.dropwizard.core.setup.HealthCheckConfiguration
 
setShutdownGracePeriod(Duration) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setStartsAsRoot(Boolean) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setTasks(TaskConfiguration) - Method in class io.dropwizard.core.setup.AdminFactory
 
setUid(Integer) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setUmask(String) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setUser(String) - Method in class io.dropwizard.core.server.AbstractServerFactory
 
setValidator(Validator) - Method in class io.dropwizard.core.setup.Environment
Sets the application's Validator.
setValidatorFactory(ValidatorFactory) - Method in class io.dropwizard.core.setup.Bootstrap
 
setWorkQueueSize(int) - Method in class io.dropwizard.core.setup.HealthCheckConfiguration
 
SimpleServerFactory - Class in io.dropwizard.core.server
A single-connector implementation of ServerFactory, suitable for PaaS deployments (e.g., Heroku) where applications are limited to a single, runtime-defined port.
SimpleServerFactory() - Constructor for class io.dropwizard.core.server.SimpleServerFactory
 
SslReloadBundle - Class in io.dropwizard.core.sslreload
Bundle that gathers all the ssl connectors and registers an admin task that will refresh ssl configuration on request
SslReloadBundle() - Constructor for class io.dropwizard.core.sslreload.SslReloadBundle
 
SslReloadTask - Class in io.dropwizard.core.sslreload
A task that will refresh all ssl factories with up to date certificate information
SslReloadTask() - Constructor for class io.dropwizard.core.sslreload.SslReloadTask
 

T

toString() - Method in class io.dropwizard.core.Configuration
 
toString() - Method in class io.dropwizard.core.server.DefaultServerFactory
 
toString() - Method in class io.dropwizard.core.setup.AdminFactory
 
toString() - Method in class io.dropwizard.core.setup.HealthCheckConfiguration
 
A B C D E G H I J L M O P R S T 
All Classes All Packages