Class UpdateTransactionStatus

  • 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 UpdateTransactionStatus
    extends SpecificRecordBase implements SpecificRecord
                        

    Updates a transaction's status. One of several types of ledger persistence request LedgerPersistenceRequest

    • Constructor Detail

      • UpdateTransactionStatus

        UpdateTransactionStatus()
        Default constructor.
      • UpdateTransactionStatus

        UpdateTransactionStatus(String id, String transactionStatus)
        All-args constructor.
        Parameters:
        id - The transaction ID, derived from the root hash of its Merkle tree
        transactionStatus - The new status of the transaction
    • Method Detail

      • getId

         String getId()

        Gets the value of the 'id' field.

        Returns:

        The transaction ID, derived from the root hash of its Merkle tree

      • setId

         void setId(String value)

        Sets the value of the 'id' field. The transaction ID, derived from the root hash of its Merkle tree

        Parameters:
        value - the value to set.
      • getTransactionStatus

         String getTransactionStatus()

        Gets the value of the 'transactionStatus' field.

        Returns:

        The new status of the transaction

      • setTransactionStatus

         void setTransactionStatus(String value)

        Sets the value of the 'transactionStatus' field. The new status of the transaction

        Parameters:
        value - the value to set.
      • getEncoder

         static BinaryMessageEncoder<UpdateTransactionStatus> getEncoder()

        Return the BinaryMessageEncoder instance used by this class.

        Returns:

        the message encoder used by this class

      • getDecoder

         static BinaryMessageDecoder<UpdateTransactionStatus> getDecoder()

        Return the BinaryMessageDecoder instance used by this class.

        Returns:

        the message decoder used by this class

      • createDecoder

         static BinaryMessageDecoder<UpdateTransactionStatus> 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 UpdateTransactionStatus to a ByteBuffer.

        Returns:

        a buffer holding the serialized data for this instance

      • fromByteBuffer

         static UpdateTransactionStatus fromByteBuffer(ByteBuffer b)

        Deserializes a UpdateTransactionStatus from a ByteBuffer.

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

        a UpdateTransactionStatus instance decoded from the given buffer