sawtooth.sdk.protobuf.ChangeLogEntryOrBuilder 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: merkle.proto
package sawtooth.sdk.protobuf;
public interface ChangeLogEntryOrBuilder extends
// @@protoc_insertion_point(interface_extends:ChangeLogEntry)
com.google.protobuf.MessageOrBuilder {
/**
*
* A root hash of a merkle trie this tree was based off.
*
*
* bytes parent = 1;
*/
com.google.protobuf.ByteString getParent();
/**
*
* The hashes that were added for this root. These may be deleted during
* pruning, if this root is being abandoned.
*
*
* repeated bytes additions = 2;
*/
java.util.List getAdditionsList();
/**
*
* The hashes that were added for this root. These may be deleted during
* pruning, if this root is being abandoned.
*
*
* repeated bytes additions = 2;
*/
int getAdditionsCount();
/**
*
* The hashes that were added for this root. These may be deleted during
* pruning, if this root is being abandoned.
*
*
* repeated bytes additions = 2;
*/
com.google.protobuf.ByteString getAdditions(int index);
/**
*
* The list of successors.
*
*
* repeated .ChangeLogEntry.Successor successors = 3;
*/
java.util.List
getSuccessorsList();
/**
*
* The list of successors.
*
*
* repeated .ChangeLogEntry.Successor successors = 3;
*/
sawtooth.sdk.protobuf.ChangeLogEntry.Successor getSuccessors(int index);
/**
*
* The list of successors.
*
*
* repeated .ChangeLogEntry.Successor successors = 3;
*/
int getSuccessorsCount();
/**
*
* The list of successors.
*
*
* repeated .ChangeLogEntry.Successor successors = 3;
*/
java.util.List extends sawtooth.sdk.protobuf.ChangeLogEntry.SuccessorOrBuilder>
getSuccessorsOrBuilderList();
/**
*
* The list of successors.
*
*
* repeated .ChangeLogEntry.Successor successors = 3;
*/
sawtooth.sdk.protobuf.ChangeLogEntry.SuccessorOrBuilder getSuccessorsOrBuilder(
int index);
}