@Configuration public class StandardCommandsAutoConfiguration extends Object
Constructor and Description |
---|
StandardCommandsAutoConfiguration() |
Modifier and Type | Method and Description |
---|---|
Clear |
clear() |
Help |
help(List<ParameterResolver> parameterResolvers) |
History |
historyCommand(org.jline.reader.History jLineHistory) |
Quit |
quit() |
Script |
script(Shell shell,
org.jline.reader.Parser parser) |
Stacktrace |
stacktrace() |
@Bean @ConditionalOnMissingBean(value=Help.Command.class) @ConditionalOnProperty(prefix="spring.shell.command.help", value="enabled", havingValue="true", matchIfMissing=true) public Help help(List<ParameterResolver> parameterResolvers)
@Bean @ConditionalOnMissingBean(value=Clear.Command.class) @ConditionalOnProperty(prefix="spring.shell.command.clear", value="enabled", havingValue="true", matchIfMissing=true) public Clear clear()
@Bean @ConditionalOnMissingBean(value=Quit.Command.class) @ConditionalOnProperty(prefix="spring.shell.command.quit", value="enabled", havingValue="true", matchIfMissing=true) public Quit quit()
@Bean @ConditionalOnMissingBean(value=Stacktrace.Command.class) @ConditionalOnProperty(prefix="spring.shell.command.stacktrace", value="enabled", havingValue="true", matchIfMissing=true) public Stacktrace stacktrace()
@Bean @ConditionalOnMissingBean(value=Script.Command.class) @ConditionalOnProperty(prefix="spring.shell.command.script", value="enabled", havingValue="true", matchIfMissing=true) public Script script(Shell shell, org.jline.reader.Parser parser)
@Bean @ConditionalOnMissingBean(value=History.Command.class) @ConditionalOnProperty(prefix="spring.shell.command.history", value="enabled", havingValue="true", matchIfMissing=true) public History historyCommand(org.jline.reader.History jLineHistory)
Copyright © 2018 Pivotal Software, Inc.. All rights reserved.