org.hyperledger.fabric.protos.gateway.EndorseResponseOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fabric-protos Show documentation
Show all versions of fabric-protos Show documentation
PROTO library for fabric-protos
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: gateway/gateway.proto
package org.hyperledger.fabric.protos.gateway;
public interface EndorseResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:gateway.EndorseResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* The unsigned set of transaction responses from the endorsing peers for signing by the client
* before submitting to ordering service (via gateway).
*
*
* .common.Envelope prepared_transaction = 1 [json_name = "preparedTransaction"];
* @return Whether the preparedTransaction field is set.
*/
boolean hasPreparedTransaction();
/**
*
* The unsigned set of transaction responses from the endorsing peers for signing by the client
* before submitting to ordering service (via gateway).
*
*
* .common.Envelope prepared_transaction = 1 [json_name = "preparedTransaction"];
* @return The preparedTransaction.
*/
org.hyperledger.fabric.protos.common.Envelope getPreparedTransaction();
/**
*
* The unsigned set of transaction responses from the endorsing peers for signing by the client
* before submitting to ordering service (via gateway).
*
*
* .common.Envelope prepared_transaction = 1 [json_name = "preparedTransaction"];
*/
org.hyperledger.fabric.protos.common.EnvelopeOrBuilder getPreparedTransactionOrBuilder();
}