org.hyperledger.fabric.protos.peer.ChannelQueryResponse Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: peer/query.proto
// Protobuf Java Version: 4.28.2
package org.hyperledger.fabric.protos.peer;
/**
*
* ChannelQueryResponse returns information about each channel that pertains
* to a query in lscc.go, such as GetChannels (returns all channels for a
* given peer)
*
*
* Protobuf type {@code protos.ChannelQueryResponse}
*/
public final class ChannelQueryResponse extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:protos.ChannelQueryResponse)
ChannelQueryResponseOrBuilder {
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= */ "",
ChannelQueryResponse.class.getName());
}
// Use ChannelQueryResponse.newBuilder() to construct.
private ChannelQueryResponse(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
}
private ChannelQueryResponse() {
channels_ = java.util.Collections.emptyList();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.peer.QueryProto.internal_static_protos_ChannelQueryResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.peer.QueryProto.internal_static_protos_ChannelQueryResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.peer.ChannelQueryResponse.class, org.hyperledger.fabric.protos.peer.ChannelQueryResponse.Builder.class);
}
public static final int CHANNELS_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private java.util.List channels_;
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
@java.lang.Override
public java.util.List getChannelsList() {
return channels_;
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
@java.lang.Override
public java.util.List extends org.hyperledger.fabric.protos.peer.ChannelInfoOrBuilder>
getChannelsOrBuilderList() {
return channels_;
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
@java.lang.Override
public int getChannelsCount() {
return channels_.size();
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
@java.lang.Override
public org.hyperledger.fabric.protos.peer.ChannelInfo getChannels(int index) {
return channels_.get(index);
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
@java.lang.Override
public org.hyperledger.fabric.protos.peer.ChannelInfoOrBuilder getChannelsOrBuilder(
int index) {
return channels_.get(index);
}
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 {
for (int i = 0; i < channels_.size(); i++) {
output.writeMessage(1, channels_.get(i));
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < channels_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, channels_.get(i));
}
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.ChannelQueryResponse)) {
return super.equals(obj);
}
org.hyperledger.fabric.protos.peer.ChannelQueryResponse other = (org.hyperledger.fabric.protos.peer.ChannelQueryResponse) obj;
if (!getChannelsList()
.equals(other.getChannelsList())) 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();
if (getChannelsCount() > 0) {
hash = (37 * hash) + CHANNELS_FIELD_NUMBER;
hash = (53 * hash) + getChannelsList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.hyperledger.fabric.protos.peer.ChannelQueryResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.peer.ChannelQueryResponse 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.ChannelQueryResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.peer.ChannelQueryResponse 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.ChannelQueryResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.peer.ChannelQueryResponse 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.ChannelQueryResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.peer.ChannelQueryResponse 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.ChannelQueryResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.peer.ChannelQueryResponse 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.ChannelQueryResponse 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.ChannelQueryResponse 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.ChannelQueryResponse 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;
}
/**
*
* ChannelQueryResponse returns information about each channel that pertains
* to a query in lscc.go, such as GetChannels (returns all channels for a
* given peer)
*
*
* Protobuf type {@code protos.ChannelQueryResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:protos.ChannelQueryResponse)
org.hyperledger.fabric.protos.peer.ChannelQueryResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.peer.QueryProto.internal_static_protos_ChannelQueryResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.peer.QueryProto.internal_static_protos_ChannelQueryResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.peer.ChannelQueryResponse.class, org.hyperledger.fabric.protos.peer.ChannelQueryResponse.Builder.class);
}
// Construct using org.hyperledger.fabric.protos.peer.ChannelQueryResponse.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
if (channelsBuilder_ == null) {
channels_ = java.util.Collections.emptyList();
} else {
channels_ = null;
channelsBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.hyperledger.fabric.protos.peer.QueryProto.internal_static_protos_ChannelQueryResponse_descriptor;
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.ChannelQueryResponse getDefaultInstanceForType() {
return org.hyperledger.fabric.protos.peer.ChannelQueryResponse.getDefaultInstance();
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.ChannelQueryResponse build() {
org.hyperledger.fabric.protos.peer.ChannelQueryResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.ChannelQueryResponse buildPartial() {
org.hyperledger.fabric.protos.peer.ChannelQueryResponse result = new org.hyperledger.fabric.protos.peer.ChannelQueryResponse(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartialRepeatedFields(org.hyperledger.fabric.protos.peer.ChannelQueryResponse result) {
if (channelsBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
channels_ = java.util.Collections.unmodifiableList(channels_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.channels_ = channels_;
} else {
result.channels_ = channelsBuilder_.build();
}
}
private void buildPartial0(org.hyperledger.fabric.protos.peer.ChannelQueryResponse result) {
int from_bitField0_ = bitField0_;
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.hyperledger.fabric.protos.peer.ChannelQueryResponse) {
return mergeFrom((org.hyperledger.fabric.protos.peer.ChannelQueryResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.hyperledger.fabric.protos.peer.ChannelQueryResponse other) {
if (other == org.hyperledger.fabric.protos.peer.ChannelQueryResponse.getDefaultInstance()) return this;
if (channelsBuilder_ == null) {
if (!other.channels_.isEmpty()) {
if (channels_.isEmpty()) {
channels_ = other.channels_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureChannelsIsMutable();
channels_.addAll(other.channels_);
}
onChanged();
}
} else {
if (!other.channels_.isEmpty()) {
if (channelsBuilder_.isEmpty()) {
channelsBuilder_.dispose();
channelsBuilder_ = null;
channels_ = other.channels_;
bitField0_ = (bitField0_ & ~0x00000001);
channelsBuilder_ =
com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
getChannelsFieldBuilder() : null;
} else {
channelsBuilder_.addAllMessages(other.channels_);
}
}
}
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: {
org.hyperledger.fabric.protos.peer.ChannelInfo m =
input.readMessage(
org.hyperledger.fabric.protos.peer.ChannelInfo.parser(),
extensionRegistry);
if (channelsBuilder_ == null) {
ensureChannelsIsMutable();
channels_.add(m);
} else {
channelsBuilder_.addMessage(m);
}
break;
} // case 10
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.util.List channels_ =
java.util.Collections.emptyList();
private void ensureChannelsIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
channels_ = new java.util.ArrayList(channels_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilder<
org.hyperledger.fabric.protos.peer.ChannelInfo, org.hyperledger.fabric.protos.peer.ChannelInfo.Builder, org.hyperledger.fabric.protos.peer.ChannelInfoOrBuilder> channelsBuilder_;
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public java.util.List getChannelsList() {
if (channelsBuilder_ == null) {
return java.util.Collections.unmodifiableList(channels_);
} else {
return channelsBuilder_.getMessageList();
}
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public int getChannelsCount() {
if (channelsBuilder_ == null) {
return channels_.size();
} else {
return channelsBuilder_.getCount();
}
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public org.hyperledger.fabric.protos.peer.ChannelInfo getChannels(int index) {
if (channelsBuilder_ == null) {
return channels_.get(index);
} else {
return channelsBuilder_.getMessage(index);
}
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public Builder setChannels(
int index, org.hyperledger.fabric.protos.peer.ChannelInfo value) {
if (channelsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureChannelsIsMutable();
channels_.set(index, value);
onChanged();
} else {
channelsBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public Builder setChannels(
int index, org.hyperledger.fabric.protos.peer.ChannelInfo.Builder builderForValue) {
if (channelsBuilder_ == null) {
ensureChannelsIsMutable();
channels_.set(index, builderForValue.build());
onChanged();
} else {
channelsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public Builder addChannels(org.hyperledger.fabric.protos.peer.ChannelInfo value) {
if (channelsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureChannelsIsMutable();
channels_.add(value);
onChanged();
} else {
channelsBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public Builder addChannels(
int index, org.hyperledger.fabric.protos.peer.ChannelInfo value) {
if (channelsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureChannelsIsMutable();
channels_.add(index, value);
onChanged();
} else {
channelsBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public Builder addChannels(
org.hyperledger.fabric.protos.peer.ChannelInfo.Builder builderForValue) {
if (channelsBuilder_ == null) {
ensureChannelsIsMutable();
channels_.add(builderForValue.build());
onChanged();
} else {
channelsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public Builder addChannels(
int index, org.hyperledger.fabric.protos.peer.ChannelInfo.Builder builderForValue) {
if (channelsBuilder_ == null) {
ensureChannelsIsMutable();
channels_.add(index, builderForValue.build());
onChanged();
} else {
channelsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public Builder addAllChannels(
java.lang.Iterable extends org.hyperledger.fabric.protos.peer.ChannelInfo> values) {
if (channelsBuilder_ == null) {
ensureChannelsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, channels_);
onChanged();
} else {
channelsBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public Builder clearChannels() {
if (channelsBuilder_ == null) {
channels_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
channelsBuilder_.clear();
}
return this;
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public Builder removeChannels(int index) {
if (channelsBuilder_ == null) {
ensureChannelsIsMutable();
channels_.remove(index);
onChanged();
} else {
channelsBuilder_.remove(index);
}
return this;
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public org.hyperledger.fabric.protos.peer.ChannelInfo.Builder getChannelsBuilder(
int index) {
return getChannelsFieldBuilder().getBuilder(index);
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public org.hyperledger.fabric.protos.peer.ChannelInfoOrBuilder getChannelsOrBuilder(
int index) {
if (channelsBuilder_ == null) {
return channels_.get(index); } else {
return channelsBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public java.util.List extends org.hyperledger.fabric.protos.peer.ChannelInfoOrBuilder>
getChannelsOrBuilderList() {
if (channelsBuilder_ != null) {
return channelsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(channels_);
}
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public org.hyperledger.fabric.protos.peer.ChannelInfo.Builder addChannelsBuilder() {
return getChannelsFieldBuilder().addBuilder(
org.hyperledger.fabric.protos.peer.ChannelInfo.getDefaultInstance());
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public org.hyperledger.fabric.protos.peer.ChannelInfo.Builder addChannelsBuilder(
int index) {
return getChannelsFieldBuilder().addBuilder(
index, org.hyperledger.fabric.protos.peer.ChannelInfo.getDefaultInstance());
}
/**
* repeated .protos.ChannelInfo channels = 1 [json_name = "channels"];
*/
public java.util.List
getChannelsBuilderList() {
return getChannelsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilder<
org.hyperledger.fabric.protos.peer.ChannelInfo, org.hyperledger.fabric.protos.peer.ChannelInfo.Builder, org.hyperledger.fabric.protos.peer.ChannelInfoOrBuilder>
getChannelsFieldBuilder() {
if (channelsBuilder_ == null) {
channelsBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
org.hyperledger.fabric.protos.peer.ChannelInfo, org.hyperledger.fabric.protos.peer.ChannelInfo.Builder, org.hyperledger.fabric.protos.peer.ChannelInfoOrBuilder>(
channels_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
channels_ = null;
}
return channelsBuilder_;
}
// @@protoc_insertion_point(builder_scope:protos.ChannelQueryResponse)
}
// @@protoc_insertion_point(class_scope:protos.ChannelQueryResponse)
private static final org.hyperledger.fabric.protos.peer.ChannelQueryResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new org.hyperledger.fabric.protos.peer.ChannelQueryResponse();
}
public static org.hyperledger.fabric.protos.peer.ChannelQueryResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ChannelQueryResponse 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.ChannelQueryResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy