io.axoniq.axonserver.grpc.command.CommandSubscription Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: command.proto
package io.axoniq.axonserver.grpc.command;
/**
*
* Message describing a component's capability of handling a command type
*
*
* Protobuf type {@code io.axoniq.axonserver.grpc.command.CommandSubscription}
*/
public final class CommandSubscription extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:io.axoniq.axonserver.grpc.command.CommandSubscription)
CommandSubscriptionOrBuilder {
private static final long serialVersionUID = 0L;
// Use CommandSubscription.newBuilder() to construct.
private CommandSubscription(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private CommandSubscription() {
messageId_ = "";
command_ = "";
componentName_ = "";
clientId_ = "";
loadFactor_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private CommandSubscription(
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();
messageId_ = s;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
command_ = s;
break;
}
case 26: {
java.lang.String s = input.readStringRequireUtf8();
componentName_ = s;
break;
}
case 34: {
java.lang.String s = input.readStringRequireUtf8();
clientId_ = s;
break;
}
case 40: {
loadFactor_ = input.readInt32();
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.command.CommandOuterClass.internal_static_io_axoniq_axonserver_grpc_command_CommandSubscription_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.axoniq.axonserver.grpc.command.CommandOuterClass.internal_static_io_axoniq_axonserver_grpc_command_CommandSubscription_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.axoniq.axonserver.grpc.command.CommandSubscription.class, io.axoniq.axonserver.grpc.command.CommandSubscription.Builder.class);
}
public static final int MESSAGE_ID_FIELD_NUMBER = 1;
private volatile java.lang.Object messageId_;
/**
*
* A unique identifier for this subscription. This identifier is returned in Acknowledgements to allow
*pipelining of subscription messages
*
*
* string message_id = 1;
*/
public java.lang.String getMessageId() {
java.lang.Object ref = messageId_;
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();
messageId_ = s;
return s;
}
}
/**
*
* A unique identifier for this subscription. This identifier is returned in Acknowledgements to allow
*pipelining of subscription messages
*
*
* string message_id = 1;
*/
public com.google.protobuf.ByteString
getMessageIdBytes() {
java.lang.Object ref = messageId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
messageId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int COMMAND_FIELD_NUMBER = 2;
private volatile java.lang.Object command_;
/**
*
* The name of the command the component can handle
*
*
* string command = 2;
*/
public java.lang.String getCommand() {
java.lang.Object ref = command_;
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();
command_ = s;
return s;
}
}
/**
*
* The name of the command the component can handle
*
*
* string command = 2;
*/
public com.google.protobuf.ByteString
getCommandBytes() {
java.lang.Object ref = command_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
command_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int COMPONENT_NAME_FIELD_NUMBER = 3;
private volatile java.lang.Object componentName_;
/**
*
* The name/type of the component handling the command
*
*
* string component_name = 3;
*/
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/type of the component handling the command
*
*
* string component_name = 3;
*/
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 CLIENT_ID_FIELD_NUMBER = 4;
private volatile java.lang.Object clientId_;
/**
*
* The unique identifier of the component instance subscribing
*
*
* string client_id = 4;
*/
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;
}
}
/**
*
* The unique identifier of the component instance subscribing
*
*
* string client_id = 4;
*/
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 LOAD_FACTOR_FIELD_NUMBER = 5;
private int loadFactor_;
/**
*
* A number that represents the client's relative load capacity compared to other clients.
*This information is interpreted by Axon Server in relation to the other connected nodes' values.
*Used to balance the dispatching of commands. If set to 0, Axon Server consider 100 as default value.
*
*
* int32 load_factor = 5;
*/
public int getLoadFactor() {
return loadFactor_;
}
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 (!getMessageIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, messageId_);
}
if (!getCommandBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, command_);
}
if (!getComponentNameBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, componentName_);
}
if (!getClientIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, clientId_);
}
if (loadFactor_ != 0) {
output.writeInt32(5, loadFactor_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getMessageIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, messageId_);
}
if (!getCommandBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, command_);
}
if (!getComponentNameBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, componentName_);
}
if (!getClientIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, clientId_);
}
if (loadFactor_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(5, loadFactor_);
}
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.command.CommandSubscription)) {
return super.equals(obj);
}
io.axoniq.axonserver.grpc.command.CommandSubscription other = (io.axoniq.axonserver.grpc.command.CommandSubscription) obj;
boolean result = true;
result = result && getMessageId()
.equals(other.getMessageId());
result = result && getCommand()
.equals(other.getCommand());
result = result && getComponentName()
.equals(other.getComponentName());
result = result && getClientId()
.equals(other.getClientId());
result = result && (getLoadFactor()
== other.getLoadFactor());
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) + MESSAGE_ID_FIELD_NUMBER;
hash = (53 * hash) + getMessageId().hashCode();
hash = (37 * hash) + COMMAND_FIELD_NUMBER;
hash = (53 * hash) + getCommand().hashCode();
hash = (37 * hash) + COMPONENT_NAME_FIELD_NUMBER;
hash = (53 * hash) + getComponentName().hashCode();
hash = (37 * hash) + CLIENT_ID_FIELD_NUMBER;
hash = (53 * hash) + getClientId().hashCode();
hash = (37 * hash) + LOAD_FACTOR_FIELD_NUMBER;
hash = (53 * hash) + getLoadFactor();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.axoniq.axonserver.grpc.command.CommandSubscription parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.axoniq.axonserver.grpc.command.CommandSubscription 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.command.CommandSubscription parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.axoniq.axonserver.grpc.command.CommandSubscription 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.command.CommandSubscription parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.axoniq.axonserver.grpc.command.CommandSubscription parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.axoniq.axonserver.grpc.command.CommandSubscription parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.axoniq.axonserver.grpc.command.CommandSubscription 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.command.CommandSubscription parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.axoniq.axonserver.grpc.command.CommandSubscription 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.command.CommandSubscription parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.axoniq.axonserver.grpc.command.CommandSubscription 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.command.CommandSubscription 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 describing a component's capability of handling a command type
*
*
* Protobuf type {@code io.axoniq.axonserver.grpc.command.CommandSubscription}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:io.axoniq.axonserver.grpc.command.CommandSubscription)
io.axoniq.axonserver.grpc.command.CommandSubscriptionOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.axoniq.axonserver.grpc.command.CommandOuterClass.internal_static_io_axoniq_axonserver_grpc_command_CommandSubscription_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.axoniq.axonserver.grpc.command.CommandOuterClass.internal_static_io_axoniq_axonserver_grpc_command_CommandSubscription_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.axoniq.axonserver.grpc.command.CommandSubscription.class, io.axoniq.axonserver.grpc.command.CommandSubscription.Builder.class);
}
// Construct using io.axoniq.axonserver.grpc.command.CommandSubscription.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();
messageId_ = "";
command_ = "";
componentName_ = "";
clientId_ = "";
loadFactor_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.axoniq.axonserver.grpc.command.CommandOuterClass.internal_static_io_axoniq_axonserver_grpc_command_CommandSubscription_descriptor;
}
@java.lang.Override
public io.axoniq.axonserver.grpc.command.CommandSubscription getDefaultInstanceForType() {
return io.axoniq.axonserver.grpc.command.CommandSubscription.getDefaultInstance();
}
@java.lang.Override
public io.axoniq.axonserver.grpc.command.CommandSubscription build() {
io.axoniq.axonserver.grpc.command.CommandSubscription result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.axoniq.axonserver.grpc.command.CommandSubscription buildPartial() {
io.axoniq.axonserver.grpc.command.CommandSubscription result = new io.axoniq.axonserver.grpc.command.CommandSubscription(this);
result.messageId_ = messageId_;
result.command_ = command_;
result.componentName_ = componentName_;
result.clientId_ = clientId_;
result.loadFactor_ = loadFactor_;
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.command.CommandSubscription) {
return mergeFrom((io.axoniq.axonserver.grpc.command.CommandSubscription)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.axoniq.axonserver.grpc.command.CommandSubscription other) {
if (other == io.axoniq.axonserver.grpc.command.CommandSubscription.getDefaultInstance()) return this;
if (!other.getMessageId().isEmpty()) {
messageId_ = other.messageId_;
onChanged();
}
if (!other.getCommand().isEmpty()) {
command_ = other.command_;
onChanged();
}
if (!other.getComponentName().isEmpty()) {
componentName_ = other.componentName_;
onChanged();
}
if (!other.getClientId().isEmpty()) {
clientId_ = other.clientId_;
onChanged();
}
if (other.getLoadFactor() != 0) {
setLoadFactor(other.getLoadFactor());
}
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.command.CommandSubscription parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.axoniq.axonserver.grpc.command.CommandSubscription) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object messageId_ = "";
/**
*
* A unique identifier for this subscription. This identifier is returned in Acknowledgements to allow
*pipelining of subscription messages
*
*
* string message_id = 1;
*/
public java.lang.String getMessageId() {
java.lang.Object ref = messageId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
messageId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* A unique identifier for this subscription. This identifier is returned in Acknowledgements to allow
*pipelining of subscription messages
*
*
* string message_id = 1;
*/
public com.google.protobuf.ByteString
getMessageIdBytes() {
java.lang.Object ref = messageId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
messageId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* A unique identifier for this subscription. This identifier is returned in Acknowledgements to allow
*pipelining of subscription messages
*
*
* string message_id = 1;
*/
public Builder setMessageId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
messageId_ = value;
onChanged();
return this;
}
/**
*
* A unique identifier for this subscription. This identifier is returned in Acknowledgements to allow
*pipelining of subscription messages
*
*
* string message_id = 1;
*/
public Builder clearMessageId() {
messageId_ = getDefaultInstance().getMessageId();
onChanged();
return this;
}
/**
*
* A unique identifier for this subscription. This identifier is returned in Acknowledgements to allow
*pipelining of subscription messages
*
*
* string message_id = 1;
*/
public Builder setMessageIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
messageId_ = value;
onChanged();
return this;
}
private java.lang.Object command_ = "";
/**
*
* The name of the command the component can handle
*
*
* string command = 2;
*/
public java.lang.String getCommand() {
java.lang.Object ref = command_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
command_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The name of the command the component can handle
*
*
* string command = 2;
*/
public com.google.protobuf.ByteString
getCommandBytes() {
java.lang.Object ref = command_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
command_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The name of the command the component can handle
*
*
* string command = 2;
*/
public Builder setCommand(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
command_ = value;
onChanged();
return this;
}
/**
*
* The name of the command the component can handle
*
*
* string command = 2;
*/
public Builder clearCommand() {
command_ = getDefaultInstance().getCommand();
onChanged();
return this;
}
/**
*
* The name of the command the component can handle
*
*
* string command = 2;
*/
public Builder setCommandBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
command_ = value;
onChanged();
return this;
}
private java.lang.Object componentName_ = "";
/**
*
* The name/type of the component handling the command
*
*
* string component_name = 3;
*/
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/type of the component handling the command
*
*
* string component_name = 3;
*/
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/type of the component handling the command
*
*
* string component_name = 3;
*/
public Builder setComponentName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
componentName_ = value;
onChanged();
return this;
}
/**
*
* The name/type of the component handling the command
*
*
* string component_name = 3;
*/
public Builder clearComponentName() {
componentName_ = getDefaultInstance().getComponentName();
onChanged();
return this;
}
/**
*
* The name/type of the component handling the command
*
*
* string component_name = 3;
*/
public Builder setComponentNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
componentName_ = value;
onChanged();
return this;
}
private java.lang.Object clientId_ = "";
/**
*
* The unique identifier of the component instance subscribing
*
*
* string client_id = 4;
*/
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;
}
}
/**
*
* The unique identifier of the component instance subscribing
*
*
* string client_id = 4;
*/
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;
}
}
/**
*
* The unique identifier of the component instance subscribing
*
*
* string client_id = 4;
*/
public Builder setClientId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
clientId_ = value;
onChanged();
return this;
}
/**
*
* The unique identifier of the component instance subscribing
*
*
* string client_id = 4;
*/
public Builder clearClientId() {
clientId_ = getDefaultInstance().getClientId();
onChanged();
return this;
}
/**
*
* The unique identifier of the component instance subscribing
*
*
* string client_id = 4;
*/
public Builder setClientIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
clientId_ = value;
onChanged();
return this;
}
private int loadFactor_ ;
/**
*
* A number that represents the client's relative load capacity compared to other clients.
*This information is interpreted by Axon Server in relation to the other connected nodes' values.
*Used to balance the dispatching of commands. If set to 0, Axon Server consider 100 as default value.
*
*
* int32 load_factor = 5;
*/
public int getLoadFactor() {
return loadFactor_;
}
/**
*
* A number that represents the client's relative load capacity compared to other clients.
*This information is interpreted by Axon Server in relation to the other connected nodes' values.
*Used to balance the dispatching of commands. If set to 0, Axon Server consider 100 as default value.
*
*
* int32 load_factor = 5;
*/
public Builder setLoadFactor(int value) {
loadFactor_ = value;
onChanged();
return this;
}
/**
*
* A number that represents the client's relative load capacity compared to other clients.
*This information is interpreted by Axon Server in relation to the other connected nodes' values.
*Used to balance the dispatching of commands. If set to 0, Axon Server consider 100 as default value.
*
*
* int32 load_factor = 5;
*/
public Builder clearLoadFactor() {
loadFactor_ = 0;
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.command.CommandSubscription)
}
// @@protoc_insertion_point(class_scope:io.axoniq.axonserver.grpc.command.CommandSubscription)
private static final io.axoniq.axonserver.grpc.command.CommandSubscription DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.axoniq.axonserver.grpc.command.CommandSubscription();
}
public static io.axoniq.axonserver.grpc.command.CommandSubscription getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public CommandSubscription parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new CommandSubscription(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.command.CommandSubscription getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy