sawtooth.sdk.protobuf.GenesisDataOrBuilder 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: genesis.proto
package sawtooth.sdk.protobuf;
public interface GenesisDataOrBuilder extends
// @@protoc_insertion_point(interface_extends:GenesisData)
com.google.protobuf.MessageOrBuilder {
/**
*
* The list of batches that will be applied during the genesis process
*
*
* repeated .Batch batches = 1;
*/
java.util.List
getBatchesList();
/**
*
* The list of batches that will be applied during the genesis process
*
*
* repeated .Batch batches = 1;
*/
sawtooth.sdk.protobuf.Batch getBatches(int index);
/**
*
* The list of batches that will be applied during the genesis process
*
*
* repeated .Batch batches = 1;
*/
int getBatchesCount();
/**
*
* The list of batches that will be applied during the genesis process
*
*
* repeated .Batch batches = 1;
*/
java.util.List extends sawtooth.sdk.protobuf.BatchOrBuilder>
getBatchesOrBuilderList();
/**
*
* The list of batches that will be applied during the genesis process
*
*
* repeated .Batch batches = 1;
*/
sawtooth.sdk.protobuf.BatchOrBuilder getBatchesOrBuilder(
int index);
}