Interface ExecutionContext
- All Known Subinterfaces:
DeploymentExecutionContext,InspectionExecutionContext
Deprecated.
Defines a set of methods that a step uses to communicate with its execution engine, e.g. to write to the log file.
-
Method Summary
Modifier and TypeMethodDescriptiongetAttribute(String name) Deprecated.Returns the execution context attribute with the given name, or null if there is no attribute by that name.voidDeprecated.Logs a line of error output.voidDeprecated.Logs a line and an exception to the error output .voidDeprecated.Logs a line of output.voidsetAttribute(String name, Object value) Deprecated.Stores an attribute in the execution context.
-
Method Details
-
logOutput
Deprecated.Logs a line of output. If this step is executing a command, this would be the output that is sent to thestandard output stream.- Parameters:
output- the log line to be written.
-
logError
Deprecated.Logs a line of error output. If this step is executing a command, this would be the output that is sent to thestandard error stream.- Parameters:
error- the error line to be written.
-
logError
Deprecated.Logs a line and an exception to the error output .- Parameters:
error- the error to be written.t- the exception to be logged too
-
getAttribute
Deprecated.Returns the execution context attribute with the given name, or null if there is no attribute by that name.- Parameters:
name- the name of the attribute- Returns:
- the value of the attribute, or null if there is no attribute by that name.
-
setAttribute
Deprecated.Stores an attribute in the execution context. This attribute will be available while the deployment plan is executing, until it is stopped or finished.- Parameters:
name- the name of the attributevalue- the value of the attribute
-