Interface KubernetesCommandResult<T>

All Known Subinterfaces:
KubernetesWatchCommandResult<R,A,E>

public interface KubernetesCommandResult<T>
  • Method Details

    • hasError

      boolean hasError()
      Checks for existing error on this result.
    • getResult

      T getResult()
      Gets the result model.
    • setResult

      void setResult(T result)
      Sets the result model.
    • getError

      RuntimeException getError()
      Gets the error.
    • setError

      void setError(RuntimeException error)
      Sets the error.