public interface ActionExecutionResult
Action
Modifier and Type | Interface and Description |
---|---|
static interface |
ActionExecutionResult.ActionExecutionFailure
execution that failed
|
static interface |
ActionExecutionResult.ActionExecutionSuccess
A successful action execution
|
Modifier and Type | Method and Description |
---|---|
static ActionExecutionResult.ActionExecutionFailure |
failure(Optional<String> stdOut,
Optional<String> stdErr,
com.google.common.collect.ImmutableList<String> command,
Optional<Exception> exception) |
com.google.common.collect.ImmutableList<String> |
getCommand() |
Optional<String> |
getStdErr() |
Optional<String> |
getStdOut() |
static ActionExecutionResult.ActionExecutionSuccess |
success(Optional<String> stdOut,
Optional<String> stdErr,
com.google.common.collect.ImmutableList<String> command) |