Class RuntimeCommandRunner
java.lang.Object
com.tibco.ep.buildmavenplugin.admin.RuntimeCommandRunner
An administrative command runner
-
Constructor Summary
ConstructorsConstructorDescriptionRuntimeCommandRunner
(org.apache.maven.plugin.logging.Log log, AbstractCommandBuilder builder, String shortLocation, String longLocation) -
Method Summary
Modifier and TypeMethodDescriptionerrorHandling
(ErrorHandling errorHandling) Should the runner fail upon error ?onError
(ErrorHandler errorHandler) Configure an error hookrecordOutput
(boolean recordOutput) Should the runner record outputvoid
Remove the shutdown hookrun()
Run the commandRun the command with parametersshutdownHook
(Consumer<ICommand> shutdownHook) Configure a shutdown hookwait
(boolean wait) Should the runner wait for command completion ?
-
Constructor Details
-
RuntimeCommandRunner
public RuntimeCommandRunner(org.apache.maven.plugin.logging.Log log, AbstractCommandBuilder builder, String shortLocation, String longLocation) - Parameters:
log
- The Maven log handlebuilder
- The command buildershortLocation
- Short location for logginglongLocation
- Long location for error reporting
-
-
Method Details
-
wait
Should the runner wait for command completion ?- Parameters:
wait
- True if the runner needs to wait- Returns:
- This
-
errorHandling
Should the runner fail upon error ?- Parameters:
errorHandling
- The error handling for the command- Returns:
- This
-
recordOutput
Should the runner record output- Parameters:
recordOutput
- True if the runner should record output- Returns:
- This
-
shutdownHook
Configure a shutdown hook- Parameters:
shutdownHook
- The shutdown hook- Returns:
- This
-
onError
Configure an error hook- Parameters:
errorHandler
- The error hook- Returns:
- This
-
run
Run the command- Returns:
- This
- Throws:
org.apache.maven.plugin.MojoExecutionException
- An execution failure happened
-
run
public RuntimeCommandNotifier run(Map<String, String> parameters) throws org.apache.maven.plugin.MojoExecutionExceptionRun the command with parameters- Parameters:
parameters
- The parameters- Returns:
- This
- Throws:
org.apache.maven.plugin.MojoExecutionException
- An execution failure happened
-
removeShutdownHook
public void removeShutdownHook()Remove the shutdown hook
-