io.axoniq.axonserver.grpc.control.PlatformInfo Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: control.proto
package io.axoniq.axonserver.grpc.control;
/**
*
* Message containing connection information of the node to Connect with
*
*
* Protobuf type {@code io.axoniq.axonserver.grpc.control.PlatformInfo}
*/
public final class PlatformInfo extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:io.axoniq.axonserver.grpc.control.PlatformInfo)
PlatformInfoOrBuilder {
private static final long serialVersionUID = 0L;
// Use PlatformInfo.newBuilder() to construct.
private PlatformInfo(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private PlatformInfo() {
sameConnection_ = false;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private PlatformInfo(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
io.axoniq.axonserver.grpc.control.NodeInfo.Builder subBuilder = null;
if (primary_ != null) {
subBuilder = primary_.toBuilder();
}
primary_ = input.readMessage(io.axoniq.axonserver.grpc.control.NodeInfo.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(primary_);
primary_ = subBuilder.buildPartial();
}
break;
}
case 16: {
sameConnection_ = input.readBool();
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.axoniq.axonserver.grpc.control.Control.internal_static_io_axoniq_axonserver_grpc_control_PlatformInfo_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.axoniq.axonserver.grpc.control.Control.internal_static_io_axoniq_axonserver_grpc_control_PlatformInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.axoniq.axonserver.grpc.control.PlatformInfo.class, io.axoniq.axonserver.grpc.control.PlatformInfo.Builder.class);
}
public static final int PRIMARY_FIELD_NUMBER = 1;
private io.axoniq.axonserver.grpc.control.NodeInfo primary_;
/**
*
* The connection details of the node the client should connect with
*
*
* .io.axoniq.axonserver.grpc.control.NodeInfo primary = 1;
*/
public boolean hasPrimary() {
return primary_ != null;
}
/**
*
* The connection details of the node the client should connect with
*
*
* .io.axoniq.axonserver.grpc.control.NodeInfo primary = 1;
*/
public io.axoniq.axonserver.grpc.control.NodeInfo getPrimary() {
return primary_ == null ? io.axoniq.axonserver.grpc.control.NodeInfo.getDefaultInstance() : primary_;
}
/**
*
* The connection details of the node the client should connect with
*
*
* .io.axoniq.axonserver.grpc.control.NodeInfo primary = 1;
*/
public io.axoniq.axonserver.grpc.control.NodeInfoOrBuilder getPrimaryOrBuilder() {
return getPrimary();
}
public static final int SAME_CONNECTION_FIELD_NUMBER = 2;
private boolean sameConnection_;
/**
*
* Flag indicating that the connection may be reused to connect. When true, the client _may_ reuse the connection
*established for the GetPlatformServer request for subsequent requests.
*
*
* bool same_connection = 2;
*/
public boolean getSameConnection() {
return sameConnection_;
}
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 (primary_ != null) {
output.writeMessage(1, getPrimary());
}
if (sameConnection_ != false) {
output.writeBool(2, sameConnection_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (primary_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getPrimary());
}
if (sameConnection_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(2, sameConnection_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof io.axoniq.axonserver.grpc.control.PlatformInfo)) {
return super.equals(obj);
}
io.axoniq.axonserver.grpc.control.PlatformInfo other = (io.axoniq.axonserver.grpc.control.PlatformInfo) obj;
boolean result = true;
result = result && (hasPrimary() == other.hasPrimary());
if (hasPrimary()) {
result = result && getPrimary()
.equals(other.getPrimary());
}
result = result && (getSameConnection()
== other.getSameConnection());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasPrimary()) {
hash = (37 * hash) + PRIMARY_FIELD_NUMBER;
hash = (53 * hash) + getPrimary().hashCode();
}
hash = (37 * hash) + SAME_CONNECTION_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getSameConnection());
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.axoniq.axonserver.grpc.control.PlatformInfo parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.axoniq.axonserver.grpc.control.PlatformInfo parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.axoniq.axonserver.grpc.control.PlatformInfo parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.axoniq.axonserver.grpc.control.PlatformInfo parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.axoniq.axonserver.grpc.control.PlatformInfo parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.axoniq.axonserver.grpc.control.PlatformInfo parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.axoniq.axonserver.grpc.control.PlatformInfo parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.axoniq.axonserver.grpc.control.PlatformInfo parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static io.axoniq.axonserver.grpc.control.PlatformInfo parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.axoniq.axonserver.grpc.control.PlatformInfo parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static io.axoniq.axonserver.grpc.control.PlatformInfo parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.axoniq.axonserver.grpc.control.PlatformInfo parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(io.axoniq.axonserver.grpc.control.PlatformInfo 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.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* Message containing connection information of the node to Connect with
*
*
* Protobuf type {@code io.axoniq.axonserver.grpc.control.PlatformInfo}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:io.axoniq.axonserver.grpc.control.PlatformInfo)
io.axoniq.axonserver.grpc.control.PlatformInfoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.axoniq.axonserver.grpc.control.Control.internal_static_io_axoniq_axonserver_grpc_control_PlatformInfo_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.axoniq.axonserver.grpc.control.Control.internal_static_io_axoniq_axonserver_grpc_control_PlatformInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.axoniq.axonserver.grpc.control.PlatformInfo.class, io.axoniq.axonserver.grpc.control.PlatformInfo.Builder.class);
}
// Construct using io.axoniq.axonserver.grpc.control.PlatformInfo.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (primaryBuilder_ == null) {
primary_ = null;
} else {
primary_ = null;
primaryBuilder_ = null;
}
sameConnection_ = false;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.axoniq.axonserver.grpc.control.Control.internal_static_io_axoniq_axonserver_grpc_control_PlatformInfo_descriptor;
}
@java.lang.Override
public io.axoniq.axonserver.grpc.control.PlatformInfo getDefaultInstanceForType() {
return io.axoniq.axonserver.grpc.control.PlatformInfo.getDefaultInstance();
}
@java.lang.Override
public io.axoniq.axonserver.grpc.control.PlatformInfo build() {
io.axoniq.axonserver.grpc.control.PlatformInfo result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.axoniq.axonserver.grpc.control.PlatformInfo buildPartial() {
io.axoniq.axonserver.grpc.control.PlatformInfo result = new io.axoniq.axonserver.grpc.control.PlatformInfo(this);
if (primaryBuilder_ == null) {
result.primary_ = primary_;
} else {
result.primary_ = primaryBuilder_.build();
}
result.sameConnection_ = sameConnection_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.axoniq.axonserver.grpc.control.PlatformInfo) {
return mergeFrom((io.axoniq.axonserver.grpc.control.PlatformInfo)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.axoniq.axonserver.grpc.control.PlatformInfo other) {
if (other == io.axoniq.axonserver.grpc.control.PlatformInfo.getDefaultInstance()) return this;
if (other.hasPrimary()) {
mergePrimary(other.getPrimary());
}
if (other.getSameConnection() != false) {
setSameConnection(other.getSameConnection());
}
this.mergeUnknownFields(other.unknownFields);
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 {
io.axoniq.axonserver.grpc.control.PlatformInfo parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.axoniq.axonserver.grpc.control.PlatformInfo) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private io.axoniq.axonserver.grpc.control.NodeInfo primary_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.axoniq.axonserver.grpc.control.NodeInfo, io.axoniq.axonserver.grpc.control.NodeInfo.Builder, io.axoniq.axonserver.grpc.control.NodeInfoOrBuilder> primaryBuilder_;
/**
*
* The connection details of the node the client should connect with
*
*
* .io.axoniq.axonserver.grpc.control.NodeInfo primary = 1;
*/
public boolean hasPrimary() {
return primaryBuilder_ != null || primary_ != null;
}
/**
*
* The connection details of the node the client should connect with
*
*
* .io.axoniq.axonserver.grpc.control.NodeInfo primary = 1;
*/
public io.axoniq.axonserver.grpc.control.NodeInfo getPrimary() {
if (primaryBuilder_ == null) {
return primary_ == null ? io.axoniq.axonserver.grpc.control.NodeInfo.getDefaultInstance() : primary_;
} else {
return primaryBuilder_.getMessage();
}
}
/**
*
* The connection details of the node the client should connect with
*
*
* .io.axoniq.axonserver.grpc.control.NodeInfo primary = 1;
*/
public Builder setPrimary(io.axoniq.axonserver.grpc.control.NodeInfo value) {
if (primaryBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
primary_ = value;
onChanged();
} else {
primaryBuilder_.setMessage(value);
}
return this;
}
/**
*
* The connection details of the node the client should connect with
*
*
* .io.axoniq.axonserver.grpc.control.NodeInfo primary = 1;
*/
public Builder setPrimary(
io.axoniq.axonserver.grpc.control.NodeInfo.Builder builderForValue) {
if (primaryBuilder_ == null) {
primary_ = builderForValue.build();
onChanged();
} else {
primaryBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* The connection details of the node the client should connect with
*
*
* .io.axoniq.axonserver.grpc.control.NodeInfo primary = 1;
*/
public Builder mergePrimary(io.axoniq.axonserver.grpc.control.NodeInfo value) {
if (primaryBuilder_ == null) {
if (primary_ != null) {
primary_ =
io.axoniq.axonserver.grpc.control.NodeInfo.newBuilder(primary_).mergeFrom(value).buildPartial();
} else {
primary_ = value;
}
onChanged();
} else {
primaryBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* The connection details of the node the client should connect with
*
*
* .io.axoniq.axonserver.grpc.control.NodeInfo primary = 1;
*/
public Builder clearPrimary() {
if (primaryBuilder_ == null) {
primary_ = null;
onChanged();
} else {
primary_ = null;
primaryBuilder_ = null;
}
return this;
}
/**
*
* The connection details of the node the client should connect with
*
*
* .io.axoniq.axonserver.grpc.control.NodeInfo primary = 1;
*/
public io.axoniq.axonserver.grpc.control.NodeInfo.Builder getPrimaryBuilder() {
onChanged();
return getPrimaryFieldBuilder().getBuilder();
}
/**
*
* The connection details of the node the client should connect with
*
*
* .io.axoniq.axonserver.grpc.control.NodeInfo primary = 1;
*/
public io.axoniq.axonserver.grpc.control.NodeInfoOrBuilder getPrimaryOrBuilder() {
if (primaryBuilder_ != null) {
return primaryBuilder_.getMessageOrBuilder();
} else {
return primary_ == null ?
io.axoniq.axonserver.grpc.control.NodeInfo.getDefaultInstance() : primary_;
}
}
/**
*
* The connection details of the node the client should connect with
*
*
* .io.axoniq.axonserver.grpc.control.NodeInfo primary = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.axoniq.axonserver.grpc.control.NodeInfo, io.axoniq.axonserver.grpc.control.NodeInfo.Builder, io.axoniq.axonserver.grpc.control.NodeInfoOrBuilder>
getPrimaryFieldBuilder() {
if (primaryBuilder_ == null) {
primaryBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.axoniq.axonserver.grpc.control.NodeInfo, io.axoniq.axonserver.grpc.control.NodeInfo.Builder, io.axoniq.axonserver.grpc.control.NodeInfoOrBuilder>(
getPrimary(),
getParentForChildren(),
isClean());
primary_ = null;
}
return primaryBuilder_;
}
private boolean sameConnection_ ;
/**
*
* Flag indicating that the connection may be reused to connect. When true, the client _may_ reuse the connection
*established for the GetPlatformServer request for subsequent requests.
*
*
* bool same_connection = 2;
*/
public boolean getSameConnection() {
return sameConnection_;
}
/**
*
* Flag indicating that the connection may be reused to connect. When true, the client _may_ reuse the connection
*established for the GetPlatformServer request for subsequent requests.
*
*
* bool same_connection = 2;
*/
public Builder setSameConnection(boolean value) {
sameConnection_ = value;
onChanged();
return this;
}
/**
*
* Flag indicating that the connection may be reused to connect. When true, the client _may_ reuse the connection
*established for the GetPlatformServer request for subsequent requests.
*
*
* bool same_connection = 2;
*/
public Builder clearSameConnection() {
sameConnection_ = false;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:io.axoniq.axonserver.grpc.control.PlatformInfo)
}
// @@protoc_insertion_point(class_scope:io.axoniq.axonserver.grpc.control.PlatformInfo)
private static final io.axoniq.axonserver.grpc.control.PlatformInfo DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.axoniq.axonserver.grpc.control.PlatformInfo();
}
public static io.axoniq.axonserver.grpc.control.PlatformInfo getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public PlatformInfo parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new PlatformInfo(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public io.axoniq.axonserver.grpc.control.PlatformInfo getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy