Uses of Class
io.dropwizard.core.cli.Command
-
Packages that use Command Package Description com.example.helloworld.cli io.dropwizard.core.cli io.dropwizard.core.setup io.dropwizard.migrations io.dropwizard.testing io.dropwizard.testing.junit5 -
-
Uses of Command in com.example.helloworld.cli
Subclasses of Command in com.example.helloworld.cli Modifier and Type Class Description class
RenderCommand
-
Uses of Command in io.dropwizard.core.cli
Subclasses of Command in io.dropwizard.core.cli Modifier and Type Class Description class
CheckCommand<T extends Configuration>
Parses and validates the application's configuration.class
ConfiguredCommand<T extends Configuration>
A command whose first parameter is the location of a YAML configuration file.class
EnvironmentCommand<T extends Configuration>
A command which executes with a configuredEnvironment
.class
ServerCommand<T extends Configuration>
Runs an application as an HTTP server. -
Uses of Command in io.dropwizard.core.setup
Methods in io.dropwizard.core.setup that return types with arguments of type Command Modifier and Type Method Description List<Command>
Bootstrap. getCommands()
Returns the application's commands.Methods in io.dropwizard.core.setup with parameters of type Command Modifier and Type Method Description void
Bootstrap. addCommand(Command command)
Adds the given command to the bootstrap. -
Uses of Command in io.dropwizard.migrations
Subclasses of Command in io.dropwizard.migrations Modifier and Type Class Description class
AbstractLiquibaseCommand<T extends Configuration>
class
DbCalculateChecksumCommand<T extends Configuration>
class
DbClearChecksumsCommand<T extends Configuration>
class
DbCommand<T extends Configuration>
class
DbDropAllCommand<T extends Configuration>
class
DbDumpCommand<T extends Configuration>
class
DbFastForwardCommand<T extends Configuration>
class
DbGenerateDocsCommand<T extends Configuration>
class
DbLocksCommand<T extends Configuration>
class
DbMigrateCommand<T extends Configuration>
class
DbPrepareRollbackCommand<T extends Configuration>
class
DbRollbackCommand<T extends Configuration>
class
DbStatusCommand<T extends Configuration>
class
DbTagCommand<T extends Configuration>
class
DbTestCommand<T extends Configuration>
-
Uses of Command in io.dropwizard.testing
Fields in io.dropwizard.testing with type parameters of type Command Modifier and Type Field Description protected Function<Application<C>,Command>
DropwizardTestSupport. commandInstantiator
Constructor parameters in io.dropwizard.testing with type arguments of type Command Constructor Description DropwizardTestSupport(Class<? extends Application<C>> applicationClass, @Nullable C configuration, Function<Application<C>,Command> commandInstantiator)
Alternate constructor that allows specifying the command the Dropwizard application is started with.DropwizardTestSupport(Class<? extends Application<C>> applicationClass, @Nullable String configPath, @Nullable ConfigurationSourceProvider configSourceProvider, @Nullable String customPropertyPrefix, Function<Application<C>,Command> commandInstantiator, ConfigOverride... configOverrides)
DropwizardTestSupport(Class<? extends Application<C>> applicationClass, @Nullable String configPath, @Nullable String customPropertyPrefix, Function<Application<C>,Command> commandInstantiator, ConfigOverride... configOverrides)
-
Uses of Command in io.dropwizard.testing.junit5
Constructor parameters in io.dropwizard.testing.junit5 with type arguments of type Command Constructor Description DropwizardAppExtension(Class<? extends Application<C>> applicationClass, @Nullable String configPath, @Nullable String customPropertyPrefix, Function<Application<C>,Command> commandInstantiator, ConfigOverride... configOverrides)
DropwizardAppExtension(Class<? extends Application<C>> applicationClass, @Nullable String configPath, ConfigurationSourceProvider configSourceProvider, @Nullable String customPropertyPrefix, Function<Application<C>,Command> commandInstantiator, ConfigOverride... configOverrides)
DropwizardAppExtension(Class<? extends Application<C>> applicationClass, C configuration, Function<Application<C>,Command> commandInstantiator)
Alternate constructor that allows specifying the command the Dropwizard application is started with.
-