-
public final class ExecutionResponse
-
-
Field Summary
Fields Modifier and Type Field Description private final ExecutionResultresultprivate final Map<String, String>idTranslationsprivate final List<Operation>operationsprivate final IntegerretryAfterSeconds
-
Constructor Summary
Constructors Constructor Description ExecutionResponse(ExecutionResult result, Map<String, String> idTranslations, List<Operation> operations, Integer retryAfterSeconds)
-
Method Summary
Modifier and Type Method Description final ExecutionResultgetResult()The result of the execution final Map<String, String>getIdTranslations()The map of id translations that should be applied to any outstanding operations. final List<Operation>getOperations()When specified, any operations that should be prepended to the operation repo. final IntegergetRetryAfterSeconds()Optional Integer value maybe returned from the backend. -
-
Method Detail
-
getResult
final ExecutionResult getResult()
The result of the execution
-
getIdTranslations
final Map<String, String> getIdTranslations()
The map of id translations that should be applied to any outstanding operations. Within the map the key is the local Id, the value is the remote Id.
-
getOperations
final List<Operation> getOperations()
When specified, any operations that should be prepended to the operation repo.
-
getRetryAfterSeconds
final Integer getRetryAfterSeconds()
Optional Integer value maybe returned from the backend. The module handing this should delay any future requests by this time.
-
-
-
-