Interface Execution.ErrorOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Execution.Error, Execution.Error.Builder
    Enclosing class:
    Execution

    public static interface Execution.ErrorOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getContext()
      Human readable error context, helpful for debugging purposes.
      com.google.protobuf.ByteString getContextBytes()
      Human readable error context, helpful for debugging purposes.
      String getPayload()
      Error payload returned by the execution, represented as a JSON string.
      com.google.protobuf.ByteString getPayloadBytes()
      Error payload returned by the execution, represented as a JSON string.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getPayload

        String getPayload()
         Error payload returned by the execution, represented as a JSON string.
         
        string payload = 1;
        Returns:
        The payload.
      • getPayloadBytes

        com.google.protobuf.ByteString getPayloadBytes()
         Error payload returned by the execution, represented as a JSON string.
         
        string payload = 1;
        Returns:
        The bytes for payload.
      • getContext

        String getContext()
         Human readable error context, helpful for debugging purposes.
         
        string context = 2;
        Returns:
        The context.
      • getContextBytes

        com.google.protobuf.ByteString getContextBytes()
         Human readable error context, helpful for debugging purposes.
         
        string context = 2;
        Returns:
        The bytes for context.