Class FlowOpsResponse

  • All Implemented Interfaces:
    java.io.Externalizable , java.io.Serializable , java.lang.Comparable , org.apache.avro.generic.GenericContainer , org.apache.avro.generic.GenericRecord , org.apache.avro.generic.IndexedRecord , org.apache.avro.specific.SpecificRecord

    
    public class FlowOpsResponse
    extends SpecificRecordBase implements SpecificRecord
                        

    Response for crypto's flow operations envelope

    • Constructor Detail

      • FlowOpsResponse

        FlowOpsResponse()
        Default constructor.
      • FlowOpsResponse

        FlowOpsResponse(CryptoResponseContext context, Object response, ExceptionEnvelope exception)
        All-args constructor.
        Parameters:
        context - Response context, tenant id, timestamp, etc.
        response - Response's payload, depends on the requested operation
        exception - Exception information
    • Method Detail

      • setContext

         void setContext(CryptoResponseContext value)

        Sets the value of the 'context' field. Response context, tenant id, timestamp, etc.

        Parameters:
        value - the value to set.
      • getResponse

         Object getResponse()

        Gets the value of the 'response' field.

        Returns:

        Response's payload, depends on the requested operation

      • setResponse

         void setResponse(Object value)

        Sets the value of the 'response' field. Response's payload, depends on the requested operation

        Parameters:
        value - the value to set.
      • setException

         void setException(ExceptionEnvelope value)

        Sets the value of the 'exception' field. Exception information

        Parameters:
        value - the value to set.
      • getEncoder

         static BinaryMessageEncoder<FlowOpsResponse> getEncoder()

        Return the BinaryMessageEncoder instance used by this class.

        Returns:

        the message encoder used by this class

      • getDecoder

         static BinaryMessageDecoder<FlowOpsResponse> getDecoder()

        Return the BinaryMessageDecoder instance used by this class.

        Returns:

        the message decoder used by this class

      • createDecoder

         static BinaryMessageDecoder<FlowOpsResponse> createDecoder(SchemaStore resolver)

        Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore.

        Parameters:
        resolver - a SchemaStore used to find schemas by fingerprint
        Returns:

        a BinaryMessageDecoder instance for this class backed by the given SchemaStore

      • toByteBuffer

         ByteBuffer toByteBuffer()

        Serializes this FlowOpsResponse to a ByteBuffer.

        Returns:

        a buffer holding the serialized data for this instance

      • fromByteBuffer

         static FlowOpsResponse fromByteBuffer(ByteBuffer b)

        Deserializes a FlowOpsResponse from a ByteBuffer.

        Parameters:
        b - a byte buffer holding serialized data for an instance of this class
        Returns:

        a FlowOpsResponse instance decoded from the given buffer

      • newBuilder

         static FlowOpsResponse.Builder newBuilder(FlowOpsResponse other)

        Creates a new FlowOpsResponse RecordBuilder by copying an existing FlowOpsResponse instance.

        Parameters:
        other - The existing instance to copy.
        Returns:

        A new FlowOpsResponse RecordBuilder