Interface KubernetesCommandResult<T>
- All Known Subinterfaces:
KubernetesWatchCommandResult<R,A, E>
public interface KubernetesCommandResult<T>
-
Method Summary
Modifier and TypeMethodDescriptiongetError()Gets the error.Gets the result model.booleanhasError()Checks for existing error on this result.voidsetError(RuntimeException error) Sets the error.voidSets the result model.
-
Method Details
-
hasError
boolean hasError()Checks for existing error on this result. -
getResult
T getResult()Gets the result model. -
setResult
Sets the result model. -
getError
RuntimeException getError()Gets the error. -
setError
Sets the error.
-