org.hyperledger.fabric.protos.peer.ApplicationPolicy Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: peer/policy.proto
// Protobuf Java Version: 4.28.2
package org.hyperledger.fabric.protos.peer;
/**
*
* ApplicationPolicy captures the diffenrent policy types that
* are set and evaluted at the application level.
*
*
* Protobuf type {@code protos.ApplicationPolicy}
*/
public final class ApplicationPolicy extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:protos.ApplicationPolicy)
ApplicationPolicyOrBuilder {
private static final long serialVersionUID = 0L;
static {
com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion(
com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC,
/* major= */ 4,
/* minor= */ 28,
/* patch= */ 2,
/* suffix= */ "",
ApplicationPolicy.class.getName());
}
// Use ApplicationPolicy.newBuilder() to construct.
private ApplicationPolicy(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
}
private ApplicationPolicy() {
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.peer.PolicyProto.internal_static_protos_ApplicationPolicy_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.peer.PolicyProto.internal_static_protos_ApplicationPolicy_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.peer.ApplicationPolicy.class, org.hyperledger.fabric.protos.peer.ApplicationPolicy.Builder.class);
}
private int typeCase_ = 0;
@SuppressWarnings("serial")
private java.lang.Object type_;
public enum TypeCase
implements com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
SIGNATURE_POLICY(1),
CHANNEL_CONFIG_POLICY_REFERENCE(2),
TYPE_NOT_SET(0);
private final int value;
private TypeCase(int value) {
this.value = value;
}
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static TypeCase valueOf(int value) {
return forNumber(value);
}
public static TypeCase forNumber(int value) {
switch (value) {
case 1: return SIGNATURE_POLICY;
case 2: return CHANNEL_CONFIG_POLICY_REFERENCE;
case 0: return TYPE_NOT_SET;
default: return null;
}
}
public int getNumber() {
return this.value;
}
};
public TypeCase
getTypeCase() {
return TypeCase.forNumber(
typeCase_);
}
public static final int SIGNATURE_POLICY_FIELD_NUMBER = 1;
/**
*
* SignaturePolicy type is used if the policy is specified as
* a combination (using threshold gates) of signatures from MSP
* principals
*
*
* .common.SignaturePolicyEnvelope signature_policy = 1 [json_name = "signaturePolicy"];
* @return Whether the signaturePolicy field is set.
*/
@java.lang.Override
public boolean hasSignaturePolicy() {
return typeCase_ == 1;
}
/**
*
* SignaturePolicy type is used if the policy is specified as
* a combination (using threshold gates) of signatures from MSP
* principals
*
*
* .common.SignaturePolicyEnvelope signature_policy = 1 [json_name = "signaturePolicy"];
* @return The signaturePolicy.
*/
@java.lang.Override
public org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope getSignaturePolicy() {
if (typeCase_ == 1) {
return (org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope) type_;
}
return org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance();
}
/**
*
* SignaturePolicy type is used if the policy is specified as
* a combination (using threshold gates) of signatures from MSP
* principals
*
*
* .common.SignaturePolicyEnvelope signature_policy = 1 [json_name = "signaturePolicy"];
*/
@java.lang.Override
public org.hyperledger.fabric.protos.common.SignaturePolicyEnvelopeOrBuilder getSignaturePolicyOrBuilder() {
if (typeCase_ == 1) {
return (org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope) type_;
}
return org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance();
}
public static final int CHANNEL_CONFIG_POLICY_REFERENCE_FIELD_NUMBER = 2;
/**
*
* ChannelConfigPolicyReference is used when the policy is
* specified as a string that references a policy defined in
* the configuration of the channel
*
*
* string channel_config_policy_reference = 2 [json_name = "channelConfigPolicyReference"];
* @return Whether the channelConfigPolicyReference field is set.
*/
public boolean hasChannelConfigPolicyReference() {
return typeCase_ == 2;
}
/**
*
* ChannelConfigPolicyReference is used when the policy is
* specified as a string that references a policy defined in
* the configuration of the channel
*
*
* string channel_config_policy_reference = 2 [json_name = "channelConfigPolicyReference"];
* @return The channelConfigPolicyReference.
*/
public java.lang.String getChannelConfigPolicyReference() {
java.lang.Object ref = "";
if (typeCase_ == 2) {
ref = type_;
}
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (typeCase_ == 2) {
type_ = s;
}
return s;
}
}
/**
*
* ChannelConfigPolicyReference is used when the policy is
* specified as a string that references a policy defined in
* the configuration of the channel
*
*
* string channel_config_policy_reference = 2 [json_name = "channelConfigPolicyReference"];
* @return The bytes for channelConfigPolicyReference.
*/
public com.google.protobuf.ByteString
getChannelConfigPolicyReferenceBytes() {
java.lang.Object ref = "";
if (typeCase_ == 2) {
ref = type_;
}
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
if (typeCase_ == 2) {
type_ = b;
}
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (typeCase_ == 1) {
output.writeMessage(1, (org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope) type_);
}
if (typeCase_ == 2) {
com.google.protobuf.GeneratedMessage.writeString(output, 2, type_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (typeCase_ == 1) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, (org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope) type_);
}
if (typeCase_ == 2) {
size += com.google.protobuf.GeneratedMessage.computeStringSize(2, type_);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.hyperledger.fabric.protos.peer.ApplicationPolicy)) {
return super.equals(obj);
}
org.hyperledger.fabric.protos.peer.ApplicationPolicy other = (org.hyperledger.fabric.protos.peer.ApplicationPolicy) obj;
if (!getTypeCase().equals(other.getTypeCase())) return false;
switch (typeCase_) {
case 1:
if (!getSignaturePolicy()
.equals(other.getSignaturePolicy())) return false;
break;
case 2:
if (!getChannelConfigPolicyReference()
.equals(other.getChannelConfigPolicyReference())) return false;
break;
case 0:
default:
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
switch (typeCase_) {
case 1:
hash = (37 * hash) + SIGNATURE_POLICY_FIELD_NUMBER;
hash = (53 * hash) + getSignaturePolicy().hashCode();
break;
case 2:
hash = (37 * hash) + CHANNEL_CONFIG_POLICY_REFERENCE_FIELD_NUMBER;
hash = (53 * hash) + getChannelConfigPolicyReference().hashCode();
break;
case 0:
default:
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.hyperledger.fabric.protos.peer.ApplicationPolicy parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.peer.ApplicationPolicy parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.hyperledger.fabric.protos.peer.ApplicationPolicy parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.peer.ApplicationPolicy parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.hyperledger.fabric.protos.peer.ApplicationPolicy parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.peer.ApplicationPolicy parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.hyperledger.fabric.protos.peer.ApplicationPolicy parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.peer.ApplicationPolicy parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static org.hyperledger.fabric.protos.peer.ApplicationPolicy parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.peer.ApplicationPolicy parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static org.hyperledger.fabric.protos.peer.ApplicationPolicy parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.peer.ApplicationPolicy parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(org.hyperledger.fabric.protos.peer.ApplicationPolicy prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* ApplicationPolicy captures the diffenrent policy types that
* are set and evaluted at the application level.
*
*
* Protobuf type {@code protos.ApplicationPolicy}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:protos.ApplicationPolicy)
org.hyperledger.fabric.protos.peer.ApplicationPolicyOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.peer.PolicyProto.internal_static_protos_ApplicationPolicy_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.peer.PolicyProto.internal_static_protos_ApplicationPolicy_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.peer.ApplicationPolicy.class, org.hyperledger.fabric.protos.peer.ApplicationPolicy.Builder.class);
}
// Construct using org.hyperledger.fabric.protos.peer.ApplicationPolicy.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
if (signaturePolicyBuilder_ != null) {
signaturePolicyBuilder_.clear();
}
typeCase_ = 0;
type_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.hyperledger.fabric.protos.peer.PolicyProto.internal_static_protos_ApplicationPolicy_descriptor;
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.ApplicationPolicy getDefaultInstanceForType() {
return org.hyperledger.fabric.protos.peer.ApplicationPolicy.getDefaultInstance();
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.ApplicationPolicy build() {
org.hyperledger.fabric.protos.peer.ApplicationPolicy result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.ApplicationPolicy buildPartial() {
org.hyperledger.fabric.protos.peer.ApplicationPolicy result = new org.hyperledger.fabric.protos.peer.ApplicationPolicy(this);
if (bitField0_ != 0) { buildPartial0(result); }
buildPartialOneofs(result);
onBuilt();
return result;
}
private void buildPartial0(org.hyperledger.fabric.protos.peer.ApplicationPolicy result) {
int from_bitField0_ = bitField0_;
}
private void buildPartialOneofs(org.hyperledger.fabric.protos.peer.ApplicationPolicy result) {
result.typeCase_ = typeCase_;
result.type_ = this.type_;
if (typeCase_ == 1 &&
signaturePolicyBuilder_ != null) {
result.type_ = signaturePolicyBuilder_.build();
}
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.hyperledger.fabric.protos.peer.ApplicationPolicy) {
return mergeFrom((org.hyperledger.fabric.protos.peer.ApplicationPolicy)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.hyperledger.fabric.protos.peer.ApplicationPolicy other) {
if (other == org.hyperledger.fabric.protos.peer.ApplicationPolicy.getDefaultInstance()) return this;
switch (other.getTypeCase()) {
case SIGNATURE_POLICY: {
mergeSignaturePolicy(other.getSignaturePolicy());
break;
}
case CHANNEL_CONFIG_POLICY_REFERENCE: {
typeCase_ = 2;
type_ = other.type_;
onChanged();
break;
}
case TYPE_NOT_SET: {
break;
}
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
input.readMessage(
getSignaturePolicyFieldBuilder().getBuilder(),
extensionRegistry);
typeCase_ = 1;
break;
} // case 10
case 18: {
java.lang.String s = input.readStringRequireUtf8();
typeCase_ = 2;
type_ = s;
break;
} // case 18
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int typeCase_ = 0;
private java.lang.Object type_;
public TypeCase
getTypeCase() {
return TypeCase.forNumber(
typeCase_);
}
public Builder clearType() {
typeCase_ = 0;
type_ = null;
onChanged();
return this;
}
private int bitField0_;
private com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.Builder, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelopeOrBuilder> signaturePolicyBuilder_;
/**
*
* SignaturePolicy type is used if the policy is specified as
* a combination (using threshold gates) of signatures from MSP
* principals
*
*
* .common.SignaturePolicyEnvelope signature_policy = 1 [json_name = "signaturePolicy"];
* @return Whether the signaturePolicy field is set.
*/
@java.lang.Override
public boolean hasSignaturePolicy() {
return typeCase_ == 1;
}
/**
*
* SignaturePolicy type is used if the policy is specified as
* a combination (using threshold gates) of signatures from MSP
* principals
*
*
* .common.SignaturePolicyEnvelope signature_policy = 1 [json_name = "signaturePolicy"];
* @return The signaturePolicy.
*/
@java.lang.Override
public org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope getSignaturePolicy() {
if (signaturePolicyBuilder_ == null) {
if (typeCase_ == 1) {
return (org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope) type_;
}
return org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance();
} else {
if (typeCase_ == 1) {
return signaturePolicyBuilder_.getMessage();
}
return org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance();
}
}
/**
*
* SignaturePolicy type is used if the policy is specified as
* a combination (using threshold gates) of signatures from MSP
* principals
*
*
* .common.SignaturePolicyEnvelope signature_policy = 1 [json_name = "signaturePolicy"];
*/
public Builder setSignaturePolicy(org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope value) {
if (signaturePolicyBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
type_ = value;
onChanged();
} else {
signaturePolicyBuilder_.setMessage(value);
}
typeCase_ = 1;
return this;
}
/**
*
* SignaturePolicy type is used if the policy is specified as
* a combination (using threshold gates) of signatures from MSP
* principals
*
*
* .common.SignaturePolicyEnvelope signature_policy = 1 [json_name = "signaturePolicy"];
*/
public Builder setSignaturePolicy(
org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.Builder builderForValue) {
if (signaturePolicyBuilder_ == null) {
type_ = builderForValue.build();
onChanged();
} else {
signaturePolicyBuilder_.setMessage(builderForValue.build());
}
typeCase_ = 1;
return this;
}
/**
*
* SignaturePolicy type is used if the policy is specified as
* a combination (using threshold gates) of signatures from MSP
* principals
*
*
* .common.SignaturePolicyEnvelope signature_policy = 1 [json_name = "signaturePolicy"];
*/
public Builder mergeSignaturePolicy(org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope value) {
if (signaturePolicyBuilder_ == null) {
if (typeCase_ == 1 &&
type_ != org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance()) {
type_ = org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.newBuilder((org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope) type_)
.mergeFrom(value).buildPartial();
} else {
type_ = value;
}
onChanged();
} else {
if (typeCase_ == 1) {
signaturePolicyBuilder_.mergeFrom(value);
} else {
signaturePolicyBuilder_.setMessage(value);
}
}
typeCase_ = 1;
return this;
}
/**
*
* SignaturePolicy type is used if the policy is specified as
* a combination (using threshold gates) of signatures from MSP
* principals
*
*
* .common.SignaturePolicyEnvelope signature_policy = 1 [json_name = "signaturePolicy"];
*/
public Builder clearSignaturePolicy() {
if (signaturePolicyBuilder_ == null) {
if (typeCase_ == 1) {
typeCase_ = 0;
type_ = null;
onChanged();
}
} else {
if (typeCase_ == 1) {
typeCase_ = 0;
type_ = null;
}
signaturePolicyBuilder_.clear();
}
return this;
}
/**
*
* SignaturePolicy type is used if the policy is specified as
* a combination (using threshold gates) of signatures from MSP
* principals
*
*
* .common.SignaturePolicyEnvelope signature_policy = 1 [json_name = "signaturePolicy"];
*/
public org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.Builder getSignaturePolicyBuilder() {
return getSignaturePolicyFieldBuilder().getBuilder();
}
/**
*
* SignaturePolicy type is used if the policy is specified as
* a combination (using threshold gates) of signatures from MSP
* principals
*
*
* .common.SignaturePolicyEnvelope signature_policy = 1 [json_name = "signaturePolicy"];
*/
@java.lang.Override
public org.hyperledger.fabric.protos.common.SignaturePolicyEnvelopeOrBuilder getSignaturePolicyOrBuilder() {
if ((typeCase_ == 1) && (signaturePolicyBuilder_ != null)) {
return signaturePolicyBuilder_.getMessageOrBuilder();
} else {
if (typeCase_ == 1) {
return (org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope) type_;
}
return org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance();
}
}
/**
*
* SignaturePolicy type is used if the policy is specified as
* a combination (using threshold gates) of signatures from MSP
* principals
*
*
* .common.SignaturePolicyEnvelope signature_policy = 1 [json_name = "signaturePolicy"];
*/
private com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.Builder, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelopeOrBuilder>
getSignaturePolicyFieldBuilder() {
if (signaturePolicyBuilder_ == null) {
if (!(typeCase_ == 1)) {
type_ = org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.getDefaultInstance();
}
signaturePolicyBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope.Builder, org.hyperledger.fabric.protos.common.SignaturePolicyEnvelopeOrBuilder>(
(org.hyperledger.fabric.protos.common.SignaturePolicyEnvelope) type_,
getParentForChildren(),
isClean());
type_ = null;
}
typeCase_ = 1;
onChanged();
return signaturePolicyBuilder_;
}
/**
*
* ChannelConfigPolicyReference is used when the policy is
* specified as a string that references a policy defined in
* the configuration of the channel
*
*
* string channel_config_policy_reference = 2 [json_name = "channelConfigPolicyReference"];
* @return Whether the channelConfigPolicyReference field is set.
*/
@java.lang.Override
public boolean hasChannelConfigPolicyReference() {
return typeCase_ == 2;
}
/**
*
* ChannelConfigPolicyReference is used when the policy is
* specified as a string that references a policy defined in
* the configuration of the channel
*
*
* string channel_config_policy_reference = 2 [json_name = "channelConfigPolicyReference"];
* @return The channelConfigPolicyReference.
*/
@java.lang.Override
public java.lang.String getChannelConfigPolicyReference() {
java.lang.Object ref = "";
if (typeCase_ == 2) {
ref = type_;
}
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (typeCase_ == 2) {
type_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* ChannelConfigPolicyReference is used when the policy is
* specified as a string that references a policy defined in
* the configuration of the channel
*
*
* string channel_config_policy_reference = 2 [json_name = "channelConfigPolicyReference"];
* @return The bytes for channelConfigPolicyReference.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getChannelConfigPolicyReferenceBytes() {
java.lang.Object ref = "";
if (typeCase_ == 2) {
ref = type_;
}
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
if (typeCase_ == 2) {
type_ = b;
}
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* ChannelConfigPolicyReference is used when the policy is
* specified as a string that references a policy defined in
* the configuration of the channel
*
*
* string channel_config_policy_reference = 2 [json_name = "channelConfigPolicyReference"];
* @param value The channelConfigPolicyReference to set.
* @return This builder for chaining.
*/
public Builder setChannelConfigPolicyReference(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
typeCase_ = 2;
type_ = value;
onChanged();
return this;
}
/**
*
* ChannelConfigPolicyReference is used when the policy is
* specified as a string that references a policy defined in
* the configuration of the channel
*
*
* string channel_config_policy_reference = 2 [json_name = "channelConfigPolicyReference"];
* @return This builder for chaining.
*/
public Builder clearChannelConfigPolicyReference() {
if (typeCase_ == 2) {
typeCase_ = 0;
type_ = null;
onChanged();
}
return this;
}
/**
*
* ChannelConfigPolicyReference is used when the policy is
* specified as a string that references a policy defined in
* the configuration of the channel
*
*
* string channel_config_policy_reference = 2 [json_name = "channelConfigPolicyReference"];
* @param value The bytes for channelConfigPolicyReference to set.
* @return This builder for chaining.
*/
public Builder setChannelConfigPolicyReferenceBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
typeCase_ = 2;
type_ = value;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:protos.ApplicationPolicy)
}
// @@protoc_insertion_point(class_scope:protos.ApplicationPolicy)
private static final org.hyperledger.fabric.protos.peer.ApplicationPolicy DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new org.hyperledger.fabric.protos.peer.ApplicationPolicy();
}
public static org.hyperledger.fabric.protos.peer.ApplicationPolicy getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ApplicationPolicy parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.ApplicationPolicy getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy