org.hyperledger.fabric.protos.common.SignaturePolicyOrBuilder 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: common/policies.proto
package org.hyperledger.fabric.protos.common;
public interface SignaturePolicyOrBuilder extends
// @@protoc_insertion_point(interface_extends:common.SignaturePolicy)
com.google.protobuf.MessageOrBuilder {
/**
* int32 signed_by = 1 [json_name = "signedBy"];
* @return Whether the signedBy field is set.
*/
boolean hasSignedBy();
/**
* int32 signed_by = 1 [json_name = "signedBy"];
* @return The signedBy.
*/
int getSignedBy();
/**
* .common.SignaturePolicy.NOutOf n_out_of = 2 [json_name = "nOutOf"];
* @return Whether the nOutOf field is set.
*/
boolean hasNOutOf();
/**
* .common.SignaturePolicy.NOutOf n_out_of = 2 [json_name = "nOutOf"];
* @return The nOutOf.
*/
org.hyperledger.fabric.protos.common.SignaturePolicy.NOutOf getNOutOf();
/**
* .common.SignaturePolicy.NOutOf n_out_of = 2 [json_name = "nOutOf"];
*/
org.hyperledger.fabric.protos.common.SignaturePolicy.NOutOfOrBuilder getNOutOfOrBuilder();
public org.hyperledger.fabric.protos.common.SignaturePolicy.TypeCase getTypeCase();
}