Uses of Class
io.dropwizard.core.setup.Bootstrap
-
Packages that use Bootstrap Package Description io.dropwizard.core io.dropwizard.core.cli -
-
Uses of Bootstrap in io.dropwizard.core
Methods in io.dropwizard.core with parameters of type Bootstrap Modifier and Type Method Description protected void
Application. addDefaultCommands(Bootstrap<T> bootstrap)
Called byApplication.run(String...)
to add the standard "server" and "check" commandsvoid
Application. initialize(Bootstrap<T> bootstrap)
Initializes the application bootstrap.default void
ConfiguredBundle. initialize(Bootstrap<?> bootstrap)
Initializes the application bootstrap. -
Uses of Bootstrap in io.dropwizard.core.cli
Methods in io.dropwizard.core.cli with parameters of type Bootstrap Modifier and Type Method Description protected void
CheckCommand. run(Bootstrap<T> bootstrap, net.sourceforge.argparse4j.inf.Namespace namespace, T configuration)
abstract void
Command. run(Bootstrap<?> bootstrap, net.sourceforge.argparse4j.inf.Namespace namespace)
Executes when the user runs this specific command.void
ConfiguredCommand. run(Bootstrap<?> wildcardBootstrap, net.sourceforge.argparse4j.inf.Namespace namespace)
protected abstract void
ConfiguredCommand. run(Bootstrap<T> bootstrap, net.sourceforge.argparse4j.inf.Namespace namespace, T configuration)
Runs the command with the givenBootstrap
andConfiguration
.protected void
EnvironmentCommand. run(Bootstrap<T> bootstrap, net.sourceforge.argparse4j.inf.Namespace namespace, T configuration)
Constructors in io.dropwizard.core.cli with parameters of type Bootstrap Constructor Description Cli(JarLocation location, Bootstrap<?> bootstrap, OutputStream stdOut, OutputStream stdErr)
Create a new CLI interface for a application and its bootstrapped environment.
-