Interface ServerUpdateActionResult
-
- All Known Subinterfaces:
ServerDeploymentActionResult
- All Known Implementing Classes:
AbstractServerUpdateActionResult,SimpleServerDeploymentActionResult,SimpleServerUpdateActionResult
public interface ServerUpdateActionResultEncapsulates the results of performing a configuration modification on an individual server.- Author:
- Brian Stansberry
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classServerUpdateActionResult.Result
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ThrowablegetDeploymentException()Gets the exception, if any, that occurred while executing this action.ServerUpdateActionResult.ResultgetResult()Gets the result of the action's modification to the server's configuration.ServerUpdateActionResultgetRollbackResult()UUIDgetUpdateActionId()Gets the unique ID of the deployment action.
-
-
-
Method Detail
-
getUpdateActionId
UUID getUpdateActionId()
Gets the unique ID of the deployment action.- Returns:
- the ID. Will not be
null
-
getResult
ServerUpdateActionResult.Result getResult()
Gets the result of the action's modification to the server's configuration.- Returns:
- the result. Will not be
null
-
getDeploymentException
Throwable getDeploymentException()
Gets the exception, if any, that occurred while executing this action.- Returns:
- the exception, or
nullif no exception occurred
-
getRollbackResult
ServerUpdateActionResult getRollbackResult()
- Returns:
- the result of rolling back the action, or
nullif the action was not rolled back.
-
-