org.hyperledger.fabric.protos.orderer.BlockAttestationResponseOrBuilder 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: orderer/blockattestation.proto
package org.hyperledger.fabric.protos.orderer;
public interface BlockAttestationResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:orderer.BlockAttestationResponse)
com.google.protobuf.MessageOrBuilder {
/**
* .common.Status status = 1 [json_name = "status"];
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
* .common.Status status = 1 [json_name = "status"];
* @return The enum numeric value on the wire for status.
*/
int getStatusValue();
/**
* .common.Status status = 1 [json_name = "status"];
* @return The status.
*/
org.hyperledger.fabric.protos.common.Status getStatus();
/**
* .orderer.BlockAttestation block_attestation = 2 [json_name = "blockAttestation"];
* @return Whether the blockAttestation field is set.
*/
boolean hasBlockAttestation();
/**
* .orderer.BlockAttestation block_attestation = 2 [json_name = "blockAttestation"];
* @return The blockAttestation.
*/
org.hyperledger.fabric.protos.orderer.BlockAttestation getBlockAttestation();
/**
* .orderer.BlockAttestation block_attestation = 2 [json_name = "blockAttestation"];
*/
org.hyperledger.fabric.protos.orderer.BlockAttestationOrBuilder getBlockAttestationOrBuilder();
public org.hyperledger.fabric.protos.orderer.BlockAttestationResponse.TypeCase getTypeCase();
}