org.hyperledger.fabric.protos.common.MSPRole Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: msp/msp_principal.proto
// Protobuf Java Version: 4.28.2
package org.hyperledger.fabric.protos.common;
/**
*
* MSPRole governs the organization of the Principal
* field of an MSPPrincipal when it aims to define one of the
* two dedicated roles within an MSP: Admin and Members.
*
*
* Protobuf type {@code common.MSPRole}
*/
public final class MSPRole extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:common.MSPRole)
MSPRoleOrBuilder {
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= */ "",
MSPRole.class.getName());
}
// Use MSPRole.newBuilder() to construct.
private MSPRole(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
}
private MSPRole() {
mspIdentifier_ = "";
role_ = 0;
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.common.MSPPrincipalProto.internal_static_common_MSPRole_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.common.MSPPrincipalProto.internal_static_common_MSPRole_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.common.MSPRole.class, org.hyperledger.fabric.protos.common.MSPRole.Builder.class);
}
/**
* Protobuf enum {@code common.MSPRole.MSPRoleType}
*/
public enum MSPRoleType
implements com.google.protobuf.ProtocolMessageEnum {
/**
*
* Represents an MSP Member
*
*
* MEMBER = 0;
*/
MEMBER(0),
/**
*
* Represents an MSP Admin
*
*
* ADMIN = 1;
*/
ADMIN(1),
/**
*
* Represents an MSP Client
*
*
* CLIENT = 2;
*/
CLIENT(2),
/**
*
* Represents an MSP Peer
*
*
* PEER = 3;
*/
PEER(3),
/**
*
* Represents an MSP Orderer
*
*
* ORDERER = 4;
*/
ORDERER(4),
UNRECOGNIZED(-1),
;
static {
com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion(
com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC,
/* major= */ 4,
/* minor= */ 28,
/* patch= */ 2,
/* suffix= */ "",
MSPRoleType.class.getName());
}
/**
*
* Represents an MSP Member
*
*
* MEMBER = 0;
*/
public static final int MEMBER_VALUE = 0;
/**
*
* Represents an MSP Admin
*
*
* ADMIN = 1;
*/
public static final int ADMIN_VALUE = 1;
/**
*
* Represents an MSP Client
*
*
* CLIENT = 2;
*/
public static final int CLIENT_VALUE = 2;
/**
*
* Represents an MSP Peer
*
*
* PEER = 3;
*/
public static final int PEER_VALUE = 3;
/**
*
* Represents an MSP Orderer
*
*
* ORDERER = 4;
*/
public static final int ORDERER_VALUE = 4;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static MSPRoleType valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static MSPRoleType forNumber(int value) {
switch (value) {
case 0: return MEMBER;
case 1: return ADMIN;
case 2: return CLIENT;
case 3: return PEER;
case 4: return ORDERER;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
MSPRoleType> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public MSPRoleType findValueByNumber(int number) {
return MSPRoleType.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return org.hyperledger.fabric.protos.common.MSPRole.getDescriptor().getEnumTypes().get(0);
}
private static final MSPRoleType[] VALUES = values();
public static MSPRoleType valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private MSPRoleType(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:common.MSPRole.MSPRoleType)
}
public static final int MSP_IDENTIFIER_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object mspIdentifier_ = "";
/**
*
* MSPIdentifier represents the identifier of the MSP this principal
* refers to
*
*
* string msp_identifier = 1 [json_name = "mspIdentifier"];
* @return The mspIdentifier.
*/
@java.lang.Override
public java.lang.String getMspIdentifier() {
java.lang.Object ref = mspIdentifier_;
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();
mspIdentifier_ = s;
return s;
}
}
/**
*
* MSPIdentifier represents the identifier of the MSP this principal
* refers to
*
*
* string msp_identifier = 1 [json_name = "mspIdentifier"];
* @return The bytes for mspIdentifier.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getMspIdentifierBytes() {
java.lang.Object ref = mspIdentifier_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
mspIdentifier_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int ROLE_FIELD_NUMBER = 2;
private int role_ = 0;
/**
*
* MSPRoleType defines which of the available, pre-defined MSP-roles
* an identiy should posess inside the MSP with identifier MSPidentifier
*
*
* .common.MSPRole.MSPRoleType role = 2 [json_name = "role"];
* @return The enum numeric value on the wire for role.
*/
@java.lang.Override public int getRoleValue() {
return role_;
}
/**
*
* MSPRoleType defines which of the available, pre-defined MSP-roles
* an identiy should posess inside the MSP with identifier MSPidentifier
*
*
* .common.MSPRole.MSPRoleType role = 2 [json_name = "role"];
* @return The role.
*/
@java.lang.Override public org.hyperledger.fabric.protos.common.MSPRole.MSPRoleType getRole() {
org.hyperledger.fabric.protos.common.MSPRole.MSPRoleType result = org.hyperledger.fabric.protos.common.MSPRole.MSPRoleType.forNumber(role_);
return result == null ? org.hyperledger.fabric.protos.common.MSPRole.MSPRoleType.UNRECOGNIZED : result;
}
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 (!com.google.protobuf.GeneratedMessage.isStringEmpty(mspIdentifier_)) {
com.google.protobuf.GeneratedMessage.writeString(output, 1, mspIdentifier_);
}
if (role_ != org.hyperledger.fabric.protos.common.MSPRole.MSPRoleType.MEMBER.getNumber()) {
output.writeEnum(2, role_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessage.isStringEmpty(mspIdentifier_)) {
size += com.google.protobuf.GeneratedMessage.computeStringSize(1, mspIdentifier_);
}
if (role_ != org.hyperledger.fabric.protos.common.MSPRole.MSPRoleType.MEMBER.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(2, role_);
}
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.common.MSPRole)) {
return super.equals(obj);
}
org.hyperledger.fabric.protos.common.MSPRole other = (org.hyperledger.fabric.protos.common.MSPRole) obj;
if (!getMspIdentifier()
.equals(other.getMspIdentifier())) return false;
if (role_ != other.role_) return false;
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();
hash = (37 * hash) + MSP_IDENTIFIER_FIELD_NUMBER;
hash = (53 * hash) + getMspIdentifier().hashCode();
hash = (37 * hash) + ROLE_FIELD_NUMBER;
hash = (53 * hash) + role_;
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.hyperledger.fabric.protos.common.MSPRole parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.common.MSPRole 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.common.MSPRole parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.common.MSPRole 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.common.MSPRole parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.common.MSPRole parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.hyperledger.fabric.protos.common.MSPRole parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.common.MSPRole 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.common.MSPRole parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.common.MSPRole 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.common.MSPRole parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.common.MSPRole 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.common.MSPRole 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;
}
/**
*
* MSPRole governs the organization of the Principal
* field of an MSPPrincipal when it aims to define one of the
* two dedicated roles within an MSP: Admin and Members.
*
*
* Protobuf type {@code common.MSPRole}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:common.MSPRole)
org.hyperledger.fabric.protos.common.MSPRoleOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.common.MSPPrincipalProto.internal_static_common_MSPRole_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.common.MSPPrincipalProto.internal_static_common_MSPRole_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.common.MSPRole.class, org.hyperledger.fabric.protos.common.MSPRole.Builder.class);
}
// Construct using org.hyperledger.fabric.protos.common.MSPRole.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
mspIdentifier_ = "";
role_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.hyperledger.fabric.protos.common.MSPPrincipalProto.internal_static_common_MSPRole_descriptor;
}
@java.lang.Override
public org.hyperledger.fabric.protos.common.MSPRole getDefaultInstanceForType() {
return org.hyperledger.fabric.protos.common.MSPRole.getDefaultInstance();
}
@java.lang.Override
public org.hyperledger.fabric.protos.common.MSPRole build() {
org.hyperledger.fabric.protos.common.MSPRole result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public org.hyperledger.fabric.protos.common.MSPRole buildPartial() {
org.hyperledger.fabric.protos.common.MSPRole result = new org.hyperledger.fabric.protos.common.MSPRole(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(org.hyperledger.fabric.protos.common.MSPRole result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.mspIdentifier_ = mspIdentifier_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.role_ = role_;
}
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.hyperledger.fabric.protos.common.MSPRole) {
return mergeFrom((org.hyperledger.fabric.protos.common.MSPRole)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.hyperledger.fabric.protos.common.MSPRole other) {
if (other == org.hyperledger.fabric.protos.common.MSPRole.getDefaultInstance()) return this;
if (!other.getMspIdentifier().isEmpty()) {
mspIdentifier_ = other.mspIdentifier_;
bitField0_ |= 0x00000001;
onChanged();
}
if (other.role_ != 0) {
setRoleValue(other.getRoleValue());
}
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: {
mspIdentifier_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 16: {
role_ = input.readEnum();
bitField0_ |= 0x00000002;
break;
} // case 16
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 bitField0_;
private java.lang.Object mspIdentifier_ = "";
/**
*
* MSPIdentifier represents the identifier of the MSP this principal
* refers to
*
*
* string msp_identifier = 1 [json_name = "mspIdentifier"];
* @return The mspIdentifier.
*/
public java.lang.String getMspIdentifier() {
java.lang.Object ref = mspIdentifier_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
mspIdentifier_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* MSPIdentifier represents the identifier of the MSP this principal
* refers to
*
*
* string msp_identifier = 1 [json_name = "mspIdentifier"];
* @return The bytes for mspIdentifier.
*/
public com.google.protobuf.ByteString
getMspIdentifierBytes() {
java.lang.Object ref = mspIdentifier_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
mspIdentifier_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* MSPIdentifier represents the identifier of the MSP this principal
* refers to
*
*
* string msp_identifier = 1 [json_name = "mspIdentifier"];
* @param value The mspIdentifier to set.
* @return This builder for chaining.
*/
public Builder setMspIdentifier(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
mspIdentifier_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* MSPIdentifier represents the identifier of the MSP this principal
* refers to
*
*
* string msp_identifier = 1 [json_name = "mspIdentifier"];
* @return This builder for chaining.
*/
public Builder clearMspIdentifier() {
mspIdentifier_ = getDefaultInstance().getMspIdentifier();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
* MSPIdentifier represents the identifier of the MSP this principal
* refers to
*
*
* string msp_identifier = 1 [json_name = "mspIdentifier"];
* @param value The bytes for mspIdentifier to set.
* @return This builder for chaining.
*/
public Builder setMspIdentifierBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
mspIdentifier_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private int role_ = 0;
/**
*
* MSPRoleType defines which of the available, pre-defined MSP-roles
* an identiy should posess inside the MSP with identifier MSPidentifier
*
*
* .common.MSPRole.MSPRoleType role = 2 [json_name = "role"];
* @return The enum numeric value on the wire for role.
*/
@java.lang.Override public int getRoleValue() {
return role_;
}
/**
*
* MSPRoleType defines which of the available, pre-defined MSP-roles
* an identiy should posess inside the MSP with identifier MSPidentifier
*
*
* .common.MSPRole.MSPRoleType role = 2 [json_name = "role"];
* @param value The enum numeric value on the wire for role to set.
* @return This builder for chaining.
*/
public Builder setRoleValue(int value) {
role_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* MSPRoleType defines which of the available, pre-defined MSP-roles
* an identiy should posess inside the MSP with identifier MSPidentifier
*
*
* .common.MSPRole.MSPRoleType role = 2 [json_name = "role"];
* @return The role.
*/
@java.lang.Override
public org.hyperledger.fabric.protos.common.MSPRole.MSPRoleType getRole() {
org.hyperledger.fabric.protos.common.MSPRole.MSPRoleType result = org.hyperledger.fabric.protos.common.MSPRole.MSPRoleType.forNumber(role_);
return result == null ? org.hyperledger.fabric.protos.common.MSPRole.MSPRoleType.UNRECOGNIZED : result;
}
/**
*
* MSPRoleType defines which of the available, pre-defined MSP-roles
* an identiy should posess inside the MSP with identifier MSPidentifier
*
*
* .common.MSPRole.MSPRoleType role = 2 [json_name = "role"];
* @param value The role to set.
* @return This builder for chaining.
*/
public Builder setRole(org.hyperledger.fabric.protos.common.MSPRole.MSPRoleType value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
role_ = value.getNumber();
onChanged();
return this;
}
/**
*
* MSPRoleType defines which of the available, pre-defined MSP-roles
* an identiy should posess inside the MSP with identifier MSPidentifier
*
*
* .common.MSPRole.MSPRoleType role = 2 [json_name = "role"];
* @return This builder for chaining.
*/
public Builder clearRole() {
bitField0_ = (bitField0_ & ~0x00000002);
role_ = 0;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:common.MSPRole)
}
// @@protoc_insertion_point(class_scope:common.MSPRole)
private static final org.hyperledger.fabric.protos.common.MSPRole DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new org.hyperledger.fabric.protos.common.MSPRole();
}
public static org.hyperledger.fabric.protos.common.MSPRole getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public MSPRole 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.common.MSPRole getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy