sawtooth.sdk.protobuf.BatchOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sawtooth-sdk-protos Show documentation
Show all versions of sawtooth-sdk-protos Show documentation
"Java classes generated from Sawtooth proto definition files, to interact with the component, consensus, and other validator interfaces"
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: batch.proto
package sawtooth.sdk.protobuf;
public interface BatchOrBuilder extends
// @@protoc_insertion_point(interface_extends:Batch)
com.google.protobuf.MessageOrBuilder {
/**
*
* The serialized version of the BatchHeader
*
*
* bytes header = 1;
*/
com.google.protobuf.ByteString getHeader();
/**
*
* The signature derived from signing the header
*
*
* string header_signature = 2;
*/
java.lang.String getHeaderSignature();
/**
*
* The signature derived from signing the header
*
*
* string header_signature = 2;
*/
com.google.protobuf.ByteString
getHeaderSignatureBytes();
/**
*
* A list of the transactions that match the list of
* transaction_ids listed in the batch header
*
*
* repeated .Transaction transactions = 3;
*/
java.util.List
getTransactionsList();
/**
*
* A list of the transactions that match the list of
* transaction_ids listed in the batch header
*
*
* repeated .Transaction transactions = 3;
*/
sawtooth.sdk.protobuf.Transaction getTransactions(int index);
/**
*
* A list of the transactions that match the list of
* transaction_ids listed in the batch header
*
*
* repeated .Transaction transactions = 3;
*/
int getTransactionsCount();
/**
*
* A list of the transactions that match the list of
* transaction_ids listed in the batch header
*
*
* repeated .Transaction transactions = 3;
*/
java.util.List extends sawtooth.sdk.protobuf.TransactionOrBuilder>
getTransactionsOrBuilderList();
/**
*
* A list of the transactions that match the list of
* transaction_ids listed in the batch header
*
*
* repeated .Transaction transactions = 3;
*/
sawtooth.sdk.protobuf.TransactionOrBuilder getTransactionsOrBuilder(
int index);
/**
*
* A debugging flag which indicates this batch should be traced through the
* system, resulting in a higher level of debugging output.
*
*
* bool trace = 4;
*/
boolean getTrace();
}