org.hyperledger.fabric.protos.peer.SnapshotRequestOrBuilder 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: peer/snapshot.proto
package org.hyperledger.fabric.protos.peer;
public interface SnapshotRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:protos.SnapshotRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The signature header that contains creator identity and nonce
*
*
* .common.SignatureHeader signature_header = 1 [json_name = "signatureHeader"];
* @return Whether the signatureHeader field is set.
*/
boolean hasSignatureHeader();
/**
*
* The signature header that contains creator identity and nonce
*
*
* .common.SignatureHeader signature_header = 1 [json_name = "signatureHeader"];
* @return The signatureHeader.
*/
org.hyperledger.fabric.protos.common.SignatureHeader getSignatureHeader();
/**
*
* The signature header that contains creator identity and nonce
*
*
* .common.SignatureHeader signature_header = 1 [json_name = "signatureHeader"];
*/
org.hyperledger.fabric.protos.common.SignatureHeaderOrBuilder getSignatureHeaderOrBuilder();
/**
*
* The channel ID
*
*
* string channel_id = 2 [json_name = "channelId"];
* @return The channelId.
*/
java.lang.String getChannelId();
/**
*
* The channel ID
*
*
* string channel_id = 2 [json_name = "channelId"];
* @return The bytes for channelId.
*/
com.google.protobuf.ByteString
getChannelIdBytes();
/**
*
* The block number to generate a snapshot
*
*
* uint64 block_number = 3 [json_name = "blockNumber"];
* @return The blockNumber.
*/
long getBlockNumber();
}