io.axoniq.axonserver.grpc.control.ClientIdentification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axonserver-connector-java Show documentation
Show all versions of axonserver-connector-java Show documentation
Connector module providing infrastructure components that connect to AxonServer.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: control.proto
package io.axoniq.axonserver.grpc.control;
/**
*
* Message containing details about the Client Application
*
*
* Protobuf type {@code io.axoniq.axonserver.grpc.control.ClientIdentification}
*/
public final class ClientIdentification extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:io.axoniq.axonserver.grpc.control.ClientIdentification)
ClientIdentificationOrBuilder {
private static final long serialVersionUID = 0L;
// Use ClientIdentification.newBuilder() to construct.
private ClientIdentification(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ClientIdentification() {
clientId_ = "";
componentName_ = "";
version_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ClientIdentification(
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: {
java.lang.String s = input.readStringRequireUtf8();
clientId_ = s;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
componentName_ = s;
break;
}
case 26: {
if (!((mutable_bitField0_ & 0x00000004) == 0x00000004)) {
tags_ = com.google.protobuf.MapField.newMapField(
TagsDefaultEntryHolder.defaultEntry);
mutable_bitField0_ |= 0x00000004;
}
com.google.protobuf.MapEntry
tags__ = input.readMessage(
TagsDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry);
tags_.getMutableMap().put(
tags__.getKey(), tags__.getValue());
break;
}
case 34: {
java.lang.String s = input.readStringRequireUtf8();
version_ = s;
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_ClientIdentification_descriptor;
}
@SuppressWarnings({"rawtypes"})
@java.lang.Override
protected com.google.protobuf.MapField internalGetMapField(
int number) {
switch (number) {
case 3:
return internalGetTags();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.axoniq.axonserver.grpc.control.Control.internal_static_io_axoniq_axonserver_grpc_control_ClientIdentification_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.axoniq.axonserver.grpc.control.ClientIdentification.class, io.axoniq.axonserver.grpc.control.ClientIdentification.Builder.class);
}
private int bitField0_;
public static final int CLIENT_ID_FIELD_NUMBER = 1;
private volatile java.lang.Object clientId_;
/**
*
* A unique identifier for this client instance. Is used to distinguish different instances of the same component
*
*
* string client_id = 1;
*/
public java.lang.String getClientId() {
java.lang.Object ref = clientId_;
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();
clientId_ = s;
return s;
}
}
/**
*
* A unique identifier for this client instance. Is used to distinguish different instances of the same component
*
*
* string client_id = 1;
*/
public com.google.protobuf.ByteString
getClientIdBytes() {
java.lang.Object ref = clientId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
clientId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int COMPONENT_NAME_FIELD_NUMBER = 2;
private volatile java.lang.Object componentName_;
/**
*
* The name of the component. Several instances of the same component should share this name
*
*
* string component_name = 2;
*/
public java.lang.String getComponentName() {
java.lang.Object ref = componentName_;
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();
componentName_ = s;
return s;
}
}
/**
*
* The name of the component. Several instances of the same component should share this name
*
*
* string component_name = 2;
*/
public com.google.protobuf.ByteString
getComponentNameBytes() {
java.lang.Object ref = componentName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
componentName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int TAGS_FIELD_NUMBER = 3;
private static final class TagsDefaultEntryHolder {
static final com.google.protobuf.MapEntry<
java.lang.String, java.lang.String> defaultEntry =
com.google.protobuf.MapEntry
.newDefaultInstance(
io.axoniq.axonserver.grpc.control.Control.internal_static_io_axoniq_axonserver_grpc_control_ClientIdentification_TagsEntry_descriptor,
com.google.protobuf.WireFormat.FieldType.STRING,
"",
com.google.protobuf.WireFormat.FieldType.STRING,
"");
}
private com.google.protobuf.MapField<
java.lang.String, java.lang.String> tags_;
private com.google.protobuf.MapField
internalGetTags() {
if (tags_ == null) {
return com.google.protobuf.MapField.emptyMapField(
TagsDefaultEntryHolder.defaultEntry);
}
return tags_;
}
public int getTagsCount() {
return internalGetTags().getMap().size();
}
/**
*
* Any tags associated with the client, which may provide hints and preferences for setting up connections
*
*
* map<string, string> tags = 3;
*/
public boolean containsTags(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
return internalGetTags().getMap().containsKey(key);
}
/**
* Use {@link #getTagsMap()} instead.
*/
@java.lang.Deprecated
public java.util.Map getTags() {
return getTagsMap();
}
/**
*
* Any tags associated with the client, which may provide hints and preferences for setting up connections
*
*
* map<string, string> tags = 3;
*/
public java.util.Map getTagsMap() {
return internalGetTags().getMap();
}
/**
*
* Any tags associated with the client, which may provide hints and preferences for setting up connections
*
*
* map<string, string> tags = 3;
*/
public java.lang.String getTagsOrDefault(
java.lang.String key,
java.lang.String defaultValue) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetTags().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
* Any tags associated with the client, which may provide hints and preferences for setting up connections
*
*
* map<string, string> tags = 3;
*/
public java.lang.String getTagsOrThrow(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetTags().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public static final int VERSION_FIELD_NUMBER = 4;
private volatile java.lang.Object version_;
/**
*
* Axon framework version used by the client application instance
*
*
* string version = 4;
*/
public java.lang.String getVersion() {
java.lang.Object ref = version_;
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();
version_ = s;
return s;
}
}
/**
*
* Axon framework version used by the client application instance
*
*
* string version = 4;
*/
public com.google.protobuf.ByteString
getVersionBytes() {
java.lang.Object ref = version_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
version_ = 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 (!getClientIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, clientId_);
}
if (!getComponentNameBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, componentName_);
}
com.google.protobuf.GeneratedMessageV3
.serializeStringMapTo(
output,
internalGetTags(),
TagsDefaultEntryHolder.defaultEntry,
3);
if (!getVersionBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, version_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getClientIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, clientId_);
}
if (!getComponentNameBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, componentName_);
}
for (java.util.Map.Entry entry
: internalGetTags().getMap().entrySet()) {
com.google.protobuf.MapEntry
tags__ = TagsDefaultEntryHolder.defaultEntry.newBuilderForType()
.setKey(entry.getKey())
.setValue(entry.getValue())
.build();
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, tags__);
}
if (!getVersionBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, version_);
}
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.ClientIdentification)) {
return super.equals(obj);
}
io.axoniq.axonserver.grpc.control.ClientIdentification other = (io.axoniq.axonserver.grpc.control.ClientIdentification) obj;
boolean result = true;
result = result && getClientId()
.equals(other.getClientId());
result = result && getComponentName()
.equals(other.getComponentName());
result = result && internalGetTags().equals(
other.internalGetTags());
result = result && getVersion()
.equals(other.getVersion());
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();
hash = (37 * hash) + CLIENT_ID_FIELD_NUMBER;
hash = (53 * hash) + getClientId().hashCode();
hash = (37 * hash) + COMPONENT_NAME_FIELD_NUMBER;
hash = (53 * hash) + getComponentName().hashCode();
if (!internalGetTags().getMap().isEmpty()) {
hash = (37 * hash) + TAGS_FIELD_NUMBER;
hash = (53 * hash) + internalGetTags().hashCode();
}
hash = (37 * hash) + VERSION_FIELD_NUMBER;
hash = (53 * hash) + getVersion().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.axoniq.axonserver.grpc.control.ClientIdentification parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.axoniq.axonserver.grpc.control.ClientIdentification 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.ClientIdentification parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.axoniq.axonserver.grpc.control.ClientIdentification 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.ClientIdentification parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.axoniq.axonserver.grpc.control.ClientIdentification 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.ClientIdentification parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.axoniq.axonserver.grpc.control.ClientIdentification 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.ClientIdentification parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.axoniq.axonserver.grpc.control.ClientIdentification 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.ClientIdentification 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.ClientIdentification 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.ClientIdentification 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 details about the Client Application
*
*
* Protobuf type {@code io.axoniq.axonserver.grpc.control.ClientIdentification}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:io.axoniq.axonserver.grpc.control.ClientIdentification)
io.axoniq.axonserver.grpc.control.ClientIdentificationOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.axoniq.axonserver.grpc.control.Control.internal_static_io_axoniq_axonserver_grpc_control_ClientIdentification_descriptor;
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMapField(
int number) {
switch (number) {
case 3:
return internalGetTags();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMutableMapField(
int number) {
switch (number) {
case 3:
return internalGetMutableTags();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.axoniq.axonserver.grpc.control.Control.internal_static_io_axoniq_axonserver_grpc_control_ClientIdentification_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.axoniq.axonserver.grpc.control.ClientIdentification.class, io.axoniq.axonserver.grpc.control.ClientIdentification.Builder.class);
}
// Construct using io.axoniq.axonserver.grpc.control.ClientIdentification.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();
clientId_ = "";
componentName_ = "";
internalGetMutableTags().clear();
version_ = "";
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_ClientIdentification_descriptor;
}
@java.lang.Override
public io.axoniq.axonserver.grpc.control.ClientIdentification getDefaultInstanceForType() {
return io.axoniq.axonserver.grpc.control.ClientIdentification.getDefaultInstance();
}
@java.lang.Override
public io.axoniq.axonserver.grpc.control.ClientIdentification build() {
io.axoniq.axonserver.grpc.control.ClientIdentification result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.axoniq.axonserver.grpc.control.ClientIdentification buildPartial() {
io.axoniq.axonserver.grpc.control.ClientIdentification result = new io.axoniq.axonserver.grpc.control.ClientIdentification(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
result.clientId_ = clientId_;
result.componentName_ = componentName_;
result.tags_ = internalGetTags();
result.tags_.makeImmutable();
result.version_ = version_;
result.bitField0_ = to_bitField0_;
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.ClientIdentification) {
return mergeFrom((io.axoniq.axonserver.grpc.control.ClientIdentification)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.axoniq.axonserver.grpc.control.ClientIdentification other) {
if (other == io.axoniq.axonserver.grpc.control.ClientIdentification.getDefaultInstance()) return this;
if (!other.getClientId().isEmpty()) {
clientId_ = other.clientId_;
onChanged();
}
if (!other.getComponentName().isEmpty()) {
componentName_ = other.componentName_;
onChanged();
}
internalGetMutableTags().mergeFrom(
other.internalGetTags());
if (!other.getVersion().isEmpty()) {
version_ = other.version_;
onChanged();
}
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.ClientIdentification parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.axoniq.axonserver.grpc.control.ClientIdentification) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.lang.Object clientId_ = "";
/**
*
* A unique identifier for this client instance. Is used to distinguish different instances of the same component
*
*
* string client_id = 1;
*/
public java.lang.String getClientId() {
java.lang.Object ref = clientId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
clientId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* A unique identifier for this client instance. Is used to distinguish different instances of the same component
*
*
* string client_id = 1;
*/
public com.google.protobuf.ByteString
getClientIdBytes() {
java.lang.Object ref = clientId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
clientId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* A unique identifier for this client instance. Is used to distinguish different instances of the same component
*
*
* string client_id = 1;
*/
public Builder setClientId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
clientId_ = value;
onChanged();
return this;
}
/**
*
* A unique identifier for this client instance. Is used to distinguish different instances of the same component
*
*
* string client_id = 1;
*/
public Builder clearClientId() {
clientId_ = getDefaultInstance().getClientId();
onChanged();
return this;
}
/**
*
* A unique identifier for this client instance. Is used to distinguish different instances of the same component
*
*
* string client_id = 1;
*/
public Builder setClientIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
clientId_ = value;
onChanged();
return this;
}
private java.lang.Object componentName_ = "";
/**
*
* The name of the component. Several instances of the same component should share this name
*
*
* string component_name = 2;
*/
public java.lang.String getComponentName() {
java.lang.Object ref = componentName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
componentName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The name of the component. Several instances of the same component should share this name
*
*
* string component_name = 2;
*/
public com.google.protobuf.ByteString
getComponentNameBytes() {
java.lang.Object ref = componentName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
componentName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The name of the component. Several instances of the same component should share this name
*
*
* string component_name = 2;
*/
public Builder setComponentName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
componentName_ = value;
onChanged();
return this;
}
/**
*
* The name of the component. Several instances of the same component should share this name
*
*
* string component_name = 2;
*/
public Builder clearComponentName() {
componentName_ = getDefaultInstance().getComponentName();
onChanged();
return this;
}
/**
*
* The name of the component. Several instances of the same component should share this name
*
*
* string component_name = 2;
*/
public Builder setComponentNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
componentName_ = value;
onChanged();
return this;
}
private com.google.protobuf.MapField<
java.lang.String, java.lang.String> tags_;
private com.google.protobuf.MapField
internalGetTags() {
if (tags_ == null) {
return com.google.protobuf.MapField.emptyMapField(
TagsDefaultEntryHolder.defaultEntry);
}
return tags_;
}
private com.google.protobuf.MapField
internalGetMutableTags() {
onChanged();;
if (tags_ == null) {
tags_ = com.google.protobuf.MapField.newMapField(
TagsDefaultEntryHolder.defaultEntry);
}
if (!tags_.isMutable()) {
tags_ = tags_.copy();
}
return tags_;
}
public int getTagsCount() {
return internalGetTags().getMap().size();
}
/**
*
* Any tags associated with the client, which may provide hints and preferences for setting up connections
*
*
* map<string, string> tags = 3;
*/
public boolean containsTags(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
return internalGetTags().getMap().containsKey(key);
}
/**
* Use {@link #getTagsMap()} instead.
*/
@java.lang.Deprecated
public java.util.Map getTags() {
return getTagsMap();
}
/**
*
* Any tags associated with the client, which may provide hints and preferences for setting up connections
*
*
* map<string, string> tags = 3;
*/
public java.util.Map getTagsMap() {
return internalGetTags().getMap();
}
/**
*
* Any tags associated with the client, which may provide hints and preferences for setting up connections
*
*
* map<string, string> tags = 3;
*/
public java.lang.String getTagsOrDefault(
java.lang.String key,
java.lang.String defaultValue) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetTags().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
* Any tags associated with the client, which may provide hints and preferences for setting up connections
*
*
* map<string, string> tags = 3;
*/
public java.lang.String getTagsOrThrow(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetTags().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public Builder clearTags() {
internalGetMutableTags().getMutableMap()
.clear();
return this;
}
/**
*
* Any tags associated with the client, which may provide hints and preferences for setting up connections
*
*
* map<string, string> tags = 3;
*/
public Builder removeTags(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
internalGetMutableTags().getMutableMap()
.remove(key);
return this;
}
/**
* Use alternate mutation accessors instead.
*/
@java.lang.Deprecated
public java.util.Map
getMutableTags() {
return internalGetMutableTags().getMutableMap();
}
/**
*
* Any tags associated with the client, which may provide hints and preferences for setting up connections
*
*
* map<string, string> tags = 3;
*/
public Builder putTags(
java.lang.String key,
java.lang.String value) {
if (key == null) { throw new java.lang.NullPointerException(); }
if (value == null) { throw new java.lang.NullPointerException(); }
internalGetMutableTags().getMutableMap()
.put(key, value);
return this;
}
/**
*
* Any tags associated with the client, which may provide hints and preferences for setting up connections
*
*
* map<string, string> tags = 3;
*/
public Builder putAllTags(
java.util.Map values) {
internalGetMutableTags().getMutableMap()
.putAll(values);
return this;
}
private java.lang.Object version_ = "";
/**
*
* Axon framework version used by the client application instance
*
*
* string version = 4;
*/
public java.lang.String getVersion() {
java.lang.Object ref = version_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
version_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Axon framework version used by the client application instance
*
*
* string version = 4;
*/
public com.google.protobuf.ByteString
getVersionBytes() {
java.lang.Object ref = version_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
version_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Axon framework version used by the client application instance
*
*
* string version = 4;
*/
public Builder setVersion(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
version_ = value;
onChanged();
return this;
}
/**
*
* Axon framework version used by the client application instance
*
*
* string version = 4;
*/
public Builder clearVersion() {
version_ = getDefaultInstance().getVersion();
onChanged();
return this;
}
/**
*
* Axon framework version used by the client application instance
*
*
* string version = 4;
*/
public Builder setVersionBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
version_ = value;
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.ClientIdentification)
}
// @@protoc_insertion_point(class_scope:io.axoniq.axonserver.grpc.control.ClientIdentification)
private static final io.axoniq.axonserver.grpc.control.ClientIdentification DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.axoniq.axonserver.grpc.control.ClientIdentification();
}
public static io.axoniq.axonserver.grpc.control.ClientIdentification getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ClientIdentification parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ClientIdentification(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.ClientIdentification getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy