sawtooth.sdk.protobuf.BatchHeaderOrBuilder 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 BatchHeaderOrBuilder extends
// @@protoc_insertion_point(interface_extends:BatchHeader)
com.google.protobuf.MessageOrBuilder {
/**
*
* Public key for the client that signed the BatchHeader
*
*
* string signer_public_key = 1;
*/
java.lang.String getSignerPublicKey();
/**
*
* Public key for the client that signed the BatchHeader
*
*
* string signer_public_key = 1;
*/
com.google.protobuf.ByteString
getSignerPublicKeyBytes();
/**
*
* List of transaction.header_signatures that match the order of
* transactions required for the batch
*
*
* repeated string transaction_ids = 2;
*/
java.util.List
getTransactionIdsList();
/**
*
* List of transaction.header_signatures that match the order of
* transactions required for the batch
*
*
* repeated string transaction_ids = 2;
*/
int getTransactionIdsCount();
/**
*
* List of transaction.header_signatures that match the order of
* transactions required for the batch
*
*
* repeated string transaction_ids = 2;
*/
java.lang.String getTransactionIds(int index);
/**
*
* List of transaction.header_signatures that match the order of
* transactions required for the batch
*
*
* repeated string transaction_ids = 2;
*/
com.google.protobuf.ByteString
getTransactionIdsBytes(int index);
}