io.axoniq.axonserver.grpc.command.Command 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: command.proto
package io.axoniq.axonserver.grpc.command;
/**
*
* A message representing a Command that needs to be routed to a component capable of handling it
*
*
* Protobuf type {@code io.axoniq.axonserver.grpc.command.Command}
*/
public final class Command extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:io.axoniq.axonserver.grpc.command.Command)
CommandOrBuilder {
private static final long serialVersionUID = 0L;
// Use Command.newBuilder() to construct.
private Command(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Command() {
messageIdentifier_ = "";
name_ = "";
timestamp_ = 0L;
processingInstructions_ = java.util.Collections.emptyList();
clientId_ = "";
componentName_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private Command(
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();
messageIdentifier_ = s;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
name_ = s;
break;
}
case 24: {
timestamp_ = input.readInt64();
break;
}
case 34: {
io.axoniq.axonserver.grpc.SerializedObject.Builder subBuilder = null;
if (payload_ != null) {
subBuilder = payload_.toBuilder();
}
payload_ = input.readMessage(io.axoniq.axonserver.grpc.SerializedObject.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(payload_);
payload_ = subBuilder.buildPartial();
}
break;
}
case 42: {
if (!((mutable_bitField0_ & 0x00000010) == 0x00000010)) {
metaData_ = com.google.protobuf.MapField.newMapField(
MetaDataDefaultEntryHolder.defaultEntry);
mutable_bitField0_ |= 0x00000010;
}
com.google.protobuf.MapEntry
metaData__ = input.readMessage(
MetaDataDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry);
metaData_.getMutableMap().put(
metaData__.getKey(), metaData__.getValue());
break;
}
case 50: {
if (!((mutable_bitField0_ & 0x00000020) == 0x00000020)) {
processingInstructions_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000020;
}
processingInstructions_.add(
input.readMessage(io.axoniq.axonserver.grpc.ProcessingInstruction.parser(), extensionRegistry));
break;
}
case 58: {
java.lang.String s = input.readStringRequireUtf8();
clientId_ = s;
break;
}
case 66: {
java.lang.String s = input.readStringRequireUtf8();
componentName_ = 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 {
if (((mutable_bitField0_ & 0x00000020) == 0x00000020)) {
processingInstructions_ = java.util.Collections.unmodifiableList(processingInstructions_);
}
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_Command_descriptor;
}
@SuppressWarnings({"rawtypes"})
@java.lang.Override
protected com.google.protobuf.MapField internalGetMapField(
int number) {
switch (number) {
case 5:
return internalGetMetaData();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.axoniq.axonserver.grpc.command.CommandOuterClass.internal_static_io_axoniq_axonserver_grpc_command_Command_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.axoniq.axonserver.grpc.command.Command.class, io.axoniq.axonserver.grpc.command.Command.Builder.class);
}
private int bitField0_;
public static final int MESSAGE_IDENTIFIER_FIELD_NUMBER = 1;
private volatile java.lang.Object messageIdentifier_;
/**
*
* The unique identifier of the Command Message
*
*
* string message_identifier = 1;
*/
public java.lang.String getMessageIdentifier() {
java.lang.Object ref = messageIdentifier_;
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();
messageIdentifier_ = s;
return s;
}
}
/**
*
* The unique identifier of the Command Message
*
*
* string message_identifier = 1;
*/
public com.google.protobuf.ByteString
getMessageIdentifierBytes() {
java.lang.Object ref = messageIdentifier_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
messageIdentifier_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int NAME_FIELD_NUMBER = 2;
private volatile java.lang.Object name_;
/**
*
* The name of the command, used for routing it to a destination capable of handling it
*
*
* string name = 2;
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
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();
name_ = s;
return s;
}
}
/**
*
* The name of the command, used for routing it to a destination capable of handling it
*
*
* string name = 2;
*/
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int TIMESTAMP_FIELD_NUMBER = 3;
private long timestamp_;
/**
*
* The time at which the command was dispatched
*
*
* int64 timestamp = 3;
*/
public long getTimestamp() {
return timestamp_;
}
public static final int PAYLOAD_FIELD_NUMBER = 4;
private io.axoniq.axonserver.grpc.SerializedObject payload_;
/**
*
* The payload of the Command, providing details on the instructions for the recipient
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
public boolean hasPayload() {
return payload_ != null;
}
/**
*
* The payload of the Command, providing details on the instructions for the recipient
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
public io.axoniq.axonserver.grpc.SerializedObject getPayload() {
return payload_ == null ? io.axoniq.axonserver.grpc.SerializedObject.getDefaultInstance() : payload_;
}
/**
*
* The payload of the Command, providing details on the instructions for the recipient
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
public io.axoniq.axonserver.grpc.SerializedObjectOrBuilder getPayloadOrBuilder() {
return getPayload();
}
public static final int META_DATA_FIELD_NUMBER = 5;
private static final class MetaDataDefaultEntryHolder {
static final com.google.protobuf.MapEntry<
java.lang.String, io.axoniq.axonserver.grpc.MetaDataValue> defaultEntry =
com.google.protobuf.MapEntry
.newDefaultInstance(
io.axoniq.axonserver.grpc.command.CommandOuterClass.internal_static_io_axoniq_axonserver_grpc_command_Command_MetaDataEntry_descriptor,
com.google.protobuf.WireFormat.FieldType.STRING,
"",
com.google.protobuf.WireFormat.FieldType.MESSAGE,
io.axoniq.axonserver.grpc.MetaDataValue.getDefaultInstance());
}
private com.google.protobuf.MapField<
java.lang.String, io.axoniq.axonserver.grpc.MetaDataValue> metaData_;
private com.google.protobuf.MapField
internalGetMetaData() {
if (metaData_ == null) {
return com.google.protobuf.MapField.emptyMapField(
MetaDataDefaultEntryHolder.defaultEntry);
}
return metaData_;
}
public int getMetaDataCount() {
return internalGetMetaData().getMap().size();
}
/**
*
* Meta Data entries of the Command Message, providing contextual information to the recipient
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
public boolean containsMetaData(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
return internalGetMetaData().getMap().containsKey(key);
}
/**
* Use {@link #getMetaDataMap()} instead.
*/
@java.lang.Deprecated
public java.util.Map getMetaData() {
return getMetaDataMap();
}
/**
*
* Meta Data entries of the Command Message, providing contextual information to the recipient
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
public java.util.Map getMetaDataMap() {
return internalGetMetaData().getMap();
}
/**
*
* Meta Data entries of the Command Message, providing contextual information to the recipient
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
public io.axoniq.axonserver.grpc.MetaDataValue getMetaDataOrDefault(
java.lang.String key,
io.axoniq.axonserver.grpc.MetaDataValue defaultValue) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetMetaData().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
* Meta Data entries of the Command Message, providing contextual information to the recipient
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
public io.axoniq.axonserver.grpc.MetaDataValue getMetaDataOrThrow(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetMetaData().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public static final int PROCESSING_INSTRUCTIONS_FIELD_NUMBER = 6;
private java.util.List processingInstructions_;
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public java.util.List getProcessingInstructionsList() {
return processingInstructions_;
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public java.util.List extends io.axoniq.axonserver.grpc.ProcessingInstructionOrBuilder>
getProcessingInstructionsOrBuilderList() {
return processingInstructions_;
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public int getProcessingInstructionsCount() {
return processingInstructions_.size();
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public io.axoniq.axonserver.grpc.ProcessingInstruction getProcessingInstructions(int index) {
return processingInstructions_.get(index);
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public io.axoniq.axonserver.grpc.ProcessingInstructionOrBuilder getProcessingInstructionsOrBuilder(
int index) {
return processingInstructions_.get(index);
}
public static final int CLIENT_ID_FIELD_NUMBER = 7;
private volatile java.lang.Object clientId_;
/**
*
* The unique identifier of the component dispatching this message
*
*
* string client_id = 7;
*/
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 dispatching this message
*
*
* string client_id = 7;
*/
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 = 8;
private volatile java.lang.Object componentName_;
/**
*
* The name/type of the component dispatching this message
*
*
* string component_name = 8;
*/
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 dispatching this message
*
*
* string component_name = 8;
*/
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;
}
}
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 (!getMessageIdentifierBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, messageIdentifier_);
}
if (!getNameBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, name_);
}
if (timestamp_ != 0L) {
output.writeInt64(3, timestamp_);
}
if (payload_ != null) {
output.writeMessage(4, getPayload());
}
com.google.protobuf.GeneratedMessageV3
.serializeStringMapTo(
output,
internalGetMetaData(),
MetaDataDefaultEntryHolder.defaultEntry,
5);
for (int i = 0; i < processingInstructions_.size(); i++) {
output.writeMessage(6, processingInstructions_.get(i));
}
if (!getClientIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 7, clientId_);
}
if (!getComponentNameBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 8, componentName_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getMessageIdentifierBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, messageIdentifier_);
}
if (!getNameBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, name_);
}
if (timestamp_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(3, timestamp_);
}
if (payload_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(4, getPayload());
}
for (java.util.Map.Entry entry
: internalGetMetaData().getMap().entrySet()) {
com.google.protobuf.MapEntry
metaData__ = MetaDataDefaultEntryHolder.defaultEntry.newBuilderForType()
.setKey(entry.getKey())
.setValue(entry.getValue())
.build();
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(5, metaData__);
}
for (int i = 0; i < processingInstructions_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(6, processingInstructions_.get(i));
}
if (!getClientIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, clientId_);
}
if (!getComponentNameBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(8, componentName_);
}
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.Command)) {
return super.equals(obj);
}
io.axoniq.axonserver.grpc.command.Command other = (io.axoniq.axonserver.grpc.command.Command) obj;
boolean result = true;
result = result && getMessageIdentifier()
.equals(other.getMessageIdentifier());
result = result && getName()
.equals(other.getName());
result = result && (getTimestamp()
== other.getTimestamp());
result = result && (hasPayload() == other.hasPayload());
if (hasPayload()) {
result = result && getPayload()
.equals(other.getPayload());
}
result = result && internalGetMetaData().equals(
other.internalGetMetaData());
result = result && getProcessingInstructionsList()
.equals(other.getProcessingInstructionsList());
result = result && getClientId()
.equals(other.getClientId());
result = result && getComponentName()
.equals(other.getComponentName());
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_IDENTIFIER_FIELD_NUMBER;
hash = (53 * hash) + getMessageIdentifier().hashCode();
hash = (37 * hash) + NAME_FIELD_NUMBER;
hash = (53 * hash) + getName().hashCode();
hash = (37 * hash) + TIMESTAMP_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getTimestamp());
if (hasPayload()) {
hash = (37 * hash) + PAYLOAD_FIELD_NUMBER;
hash = (53 * hash) + getPayload().hashCode();
}
if (!internalGetMetaData().getMap().isEmpty()) {
hash = (37 * hash) + META_DATA_FIELD_NUMBER;
hash = (53 * hash) + internalGetMetaData().hashCode();
}
if (getProcessingInstructionsCount() > 0) {
hash = (37 * hash) + PROCESSING_INSTRUCTIONS_FIELD_NUMBER;
hash = (53 * hash) + getProcessingInstructionsList().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();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.axoniq.axonserver.grpc.command.Command parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.axoniq.axonserver.grpc.command.Command 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.Command parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.axoniq.axonserver.grpc.command.Command 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.Command parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.axoniq.axonserver.grpc.command.Command 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.Command parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.axoniq.axonserver.grpc.command.Command 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.Command parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.axoniq.axonserver.grpc.command.Command 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.Command 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.Command 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.Command 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;
}
/**
*
* A message representing a Command that needs to be routed to a component capable of handling it
*
*
* Protobuf type {@code io.axoniq.axonserver.grpc.command.Command}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:io.axoniq.axonserver.grpc.command.Command)
io.axoniq.axonserver.grpc.command.CommandOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.axoniq.axonserver.grpc.command.CommandOuterClass.internal_static_io_axoniq_axonserver_grpc_command_Command_descriptor;
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMapField(
int number) {
switch (number) {
case 5:
return internalGetMetaData();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMutableMapField(
int number) {
switch (number) {
case 5:
return internalGetMutableMetaData();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.axoniq.axonserver.grpc.command.CommandOuterClass.internal_static_io_axoniq_axonserver_grpc_command_Command_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.axoniq.axonserver.grpc.command.Command.class, io.axoniq.axonserver.grpc.command.Command.Builder.class);
}
// Construct using io.axoniq.axonserver.grpc.command.Command.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getProcessingInstructionsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
messageIdentifier_ = "";
name_ = "";
timestamp_ = 0L;
if (payloadBuilder_ == null) {
payload_ = null;
} else {
payload_ = null;
payloadBuilder_ = null;
}
internalGetMutableMetaData().clear();
if (processingInstructionsBuilder_ == null) {
processingInstructions_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000020);
} else {
processingInstructionsBuilder_.clear();
}
clientId_ = "";
componentName_ = "";
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_Command_descriptor;
}
@java.lang.Override
public io.axoniq.axonserver.grpc.command.Command getDefaultInstanceForType() {
return io.axoniq.axonserver.grpc.command.Command.getDefaultInstance();
}
@java.lang.Override
public io.axoniq.axonserver.grpc.command.Command build() {
io.axoniq.axonserver.grpc.command.Command result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.axoniq.axonserver.grpc.command.Command buildPartial() {
io.axoniq.axonserver.grpc.command.Command result = new io.axoniq.axonserver.grpc.command.Command(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
result.messageIdentifier_ = messageIdentifier_;
result.name_ = name_;
result.timestamp_ = timestamp_;
if (payloadBuilder_ == null) {
result.payload_ = payload_;
} else {
result.payload_ = payloadBuilder_.build();
}
result.metaData_ = internalGetMetaData();
result.metaData_.makeImmutable();
if (processingInstructionsBuilder_ == null) {
if (((bitField0_ & 0x00000020) == 0x00000020)) {
processingInstructions_ = java.util.Collections.unmodifiableList(processingInstructions_);
bitField0_ = (bitField0_ & ~0x00000020);
}
result.processingInstructions_ = processingInstructions_;
} else {
result.processingInstructions_ = processingInstructionsBuilder_.build();
}
result.clientId_ = clientId_;
result.componentName_ = componentName_;
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.command.Command) {
return mergeFrom((io.axoniq.axonserver.grpc.command.Command)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.axoniq.axonserver.grpc.command.Command other) {
if (other == io.axoniq.axonserver.grpc.command.Command.getDefaultInstance()) return this;
if (!other.getMessageIdentifier().isEmpty()) {
messageIdentifier_ = other.messageIdentifier_;
onChanged();
}
if (!other.getName().isEmpty()) {
name_ = other.name_;
onChanged();
}
if (other.getTimestamp() != 0L) {
setTimestamp(other.getTimestamp());
}
if (other.hasPayload()) {
mergePayload(other.getPayload());
}
internalGetMutableMetaData().mergeFrom(
other.internalGetMetaData());
if (processingInstructionsBuilder_ == null) {
if (!other.processingInstructions_.isEmpty()) {
if (processingInstructions_.isEmpty()) {
processingInstructions_ = other.processingInstructions_;
bitField0_ = (bitField0_ & ~0x00000020);
} else {
ensureProcessingInstructionsIsMutable();
processingInstructions_.addAll(other.processingInstructions_);
}
onChanged();
}
} else {
if (!other.processingInstructions_.isEmpty()) {
if (processingInstructionsBuilder_.isEmpty()) {
processingInstructionsBuilder_.dispose();
processingInstructionsBuilder_ = null;
processingInstructions_ = other.processingInstructions_;
bitField0_ = (bitField0_ & ~0x00000020);
processingInstructionsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getProcessingInstructionsFieldBuilder() : null;
} else {
processingInstructionsBuilder_.addAllMessages(other.processingInstructions_);
}
}
}
if (!other.getClientId().isEmpty()) {
clientId_ = other.clientId_;
onChanged();
}
if (!other.getComponentName().isEmpty()) {
componentName_ = other.componentName_;
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.command.Command parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.axoniq.axonserver.grpc.command.Command) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.lang.Object messageIdentifier_ = "";
/**
*
* The unique identifier of the Command Message
*
*
* string message_identifier = 1;
*/
public java.lang.String getMessageIdentifier() {
java.lang.Object ref = messageIdentifier_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
messageIdentifier_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The unique identifier of the Command Message
*
*
* string message_identifier = 1;
*/
public com.google.protobuf.ByteString
getMessageIdentifierBytes() {
java.lang.Object ref = messageIdentifier_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
messageIdentifier_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The unique identifier of the Command Message
*
*
* string message_identifier = 1;
*/
public Builder setMessageIdentifier(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
messageIdentifier_ = value;
onChanged();
return this;
}
/**
*
* The unique identifier of the Command Message
*
*
* string message_identifier = 1;
*/
public Builder clearMessageIdentifier() {
messageIdentifier_ = getDefaultInstance().getMessageIdentifier();
onChanged();
return this;
}
/**
*
* The unique identifier of the Command Message
*
*
* string message_identifier = 1;
*/
public Builder setMessageIdentifierBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
messageIdentifier_ = value;
onChanged();
return this;
}
private java.lang.Object name_ = "";
/**
*
* The name of the command, used for routing it to a destination capable of handling it
*
*
* string name = 2;
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
name_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The name of the command, used for routing it to a destination capable of handling it
*
*
* string name = 2;
*/
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The name of the command, used for routing it to a destination capable of handling it
*
*
* string name = 2;
*/
public Builder setName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
name_ = value;
onChanged();
return this;
}
/**
*
* The name of the command, used for routing it to a destination capable of handling it
*
*
* string name = 2;
*/
public Builder clearName() {
name_ = getDefaultInstance().getName();
onChanged();
return this;
}
/**
*
* The name of the command, used for routing it to a destination capable of handling it
*
*
* string name = 2;
*/
public Builder setNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
name_ = value;
onChanged();
return this;
}
private long timestamp_ ;
/**
*
* The time at which the command was dispatched
*
*
* int64 timestamp = 3;
*/
public long getTimestamp() {
return timestamp_;
}
/**
*
* The time at which the command was dispatched
*
*
* int64 timestamp = 3;
*/
public Builder setTimestamp(long value) {
timestamp_ = value;
onChanged();
return this;
}
/**
*
* The time at which the command was dispatched
*
*
* int64 timestamp = 3;
*/
public Builder clearTimestamp() {
timestamp_ = 0L;
onChanged();
return this;
}
private io.axoniq.axonserver.grpc.SerializedObject payload_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.axoniq.axonserver.grpc.SerializedObject, io.axoniq.axonserver.grpc.SerializedObject.Builder, io.axoniq.axonserver.grpc.SerializedObjectOrBuilder> payloadBuilder_;
/**
*
* The payload of the Command, providing details on the instructions for the recipient
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
public boolean hasPayload() {
return payloadBuilder_ != null || payload_ != null;
}
/**
*
* The payload of the Command, providing details on the instructions for the recipient
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
public io.axoniq.axonserver.grpc.SerializedObject getPayload() {
if (payloadBuilder_ == null) {
return payload_ == null ? io.axoniq.axonserver.grpc.SerializedObject.getDefaultInstance() : payload_;
} else {
return payloadBuilder_.getMessage();
}
}
/**
*
* The payload of the Command, providing details on the instructions for the recipient
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
public Builder setPayload(io.axoniq.axonserver.grpc.SerializedObject value) {
if (payloadBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
payload_ = value;
onChanged();
} else {
payloadBuilder_.setMessage(value);
}
return this;
}
/**
*
* The payload of the Command, providing details on the instructions for the recipient
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
public Builder setPayload(
io.axoniq.axonserver.grpc.SerializedObject.Builder builderForValue) {
if (payloadBuilder_ == null) {
payload_ = builderForValue.build();
onChanged();
} else {
payloadBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* The payload of the Command, providing details on the instructions for the recipient
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
public Builder mergePayload(io.axoniq.axonserver.grpc.SerializedObject value) {
if (payloadBuilder_ == null) {
if (payload_ != null) {
payload_ =
io.axoniq.axonserver.grpc.SerializedObject.newBuilder(payload_).mergeFrom(value).buildPartial();
} else {
payload_ = value;
}
onChanged();
} else {
payloadBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* The payload of the Command, providing details on the instructions for the recipient
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
public Builder clearPayload() {
if (payloadBuilder_ == null) {
payload_ = null;
onChanged();
} else {
payload_ = null;
payloadBuilder_ = null;
}
return this;
}
/**
*
* The payload of the Command, providing details on the instructions for the recipient
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
public io.axoniq.axonserver.grpc.SerializedObject.Builder getPayloadBuilder() {
onChanged();
return getPayloadFieldBuilder().getBuilder();
}
/**
*
* The payload of the Command, providing details on the instructions for the recipient
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
public io.axoniq.axonserver.grpc.SerializedObjectOrBuilder getPayloadOrBuilder() {
if (payloadBuilder_ != null) {
return payloadBuilder_.getMessageOrBuilder();
} else {
return payload_ == null ?
io.axoniq.axonserver.grpc.SerializedObject.getDefaultInstance() : payload_;
}
}
/**
*
* The payload of the Command, providing details on the instructions for the recipient
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.axoniq.axonserver.grpc.SerializedObject, io.axoniq.axonserver.grpc.SerializedObject.Builder, io.axoniq.axonserver.grpc.SerializedObjectOrBuilder>
getPayloadFieldBuilder() {
if (payloadBuilder_ == null) {
payloadBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.axoniq.axonserver.grpc.SerializedObject, io.axoniq.axonserver.grpc.SerializedObject.Builder, io.axoniq.axonserver.grpc.SerializedObjectOrBuilder>(
getPayload(),
getParentForChildren(),
isClean());
payload_ = null;
}
return payloadBuilder_;
}
private com.google.protobuf.MapField<
java.lang.String, io.axoniq.axonserver.grpc.MetaDataValue> metaData_;
private com.google.protobuf.MapField
internalGetMetaData() {
if (metaData_ == null) {
return com.google.protobuf.MapField.emptyMapField(
MetaDataDefaultEntryHolder.defaultEntry);
}
return metaData_;
}
private com.google.protobuf.MapField
internalGetMutableMetaData() {
onChanged();;
if (metaData_ == null) {
metaData_ = com.google.protobuf.MapField.newMapField(
MetaDataDefaultEntryHolder.defaultEntry);
}
if (!metaData_.isMutable()) {
metaData_ = metaData_.copy();
}
return metaData_;
}
public int getMetaDataCount() {
return internalGetMetaData().getMap().size();
}
/**
*
* Meta Data entries of the Command Message, providing contextual information to the recipient
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
public boolean containsMetaData(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
return internalGetMetaData().getMap().containsKey(key);
}
/**
* Use {@link #getMetaDataMap()} instead.
*/
@java.lang.Deprecated
public java.util.Map getMetaData() {
return getMetaDataMap();
}
/**
*
* Meta Data entries of the Command Message, providing contextual information to the recipient
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
public java.util.Map getMetaDataMap() {
return internalGetMetaData().getMap();
}
/**
*
* Meta Data entries of the Command Message, providing contextual information to the recipient
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
public io.axoniq.axonserver.grpc.MetaDataValue getMetaDataOrDefault(
java.lang.String key,
io.axoniq.axonserver.grpc.MetaDataValue defaultValue) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetMetaData().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
* Meta Data entries of the Command Message, providing contextual information to the recipient
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
public io.axoniq.axonserver.grpc.MetaDataValue getMetaDataOrThrow(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetMetaData().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public Builder clearMetaData() {
internalGetMutableMetaData().getMutableMap()
.clear();
return this;
}
/**
*
* Meta Data entries of the Command Message, providing contextual information to the recipient
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
public Builder removeMetaData(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
internalGetMutableMetaData().getMutableMap()
.remove(key);
return this;
}
/**
* Use alternate mutation accessors instead.
*/
@java.lang.Deprecated
public java.util.Map
getMutableMetaData() {
return internalGetMutableMetaData().getMutableMap();
}
/**
*
* Meta Data entries of the Command Message, providing contextual information to the recipient
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
public Builder putMetaData(
java.lang.String key,
io.axoniq.axonserver.grpc.MetaDataValue value) {
if (key == null) { throw new java.lang.NullPointerException(); }
if (value == null) { throw new java.lang.NullPointerException(); }
internalGetMutableMetaData().getMutableMap()
.put(key, value);
return this;
}
/**
*
* Meta Data entries of the Command Message, providing contextual information to the recipient
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
public Builder putAllMetaData(
java.util.Map values) {
internalGetMutableMetaData().getMutableMap()
.putAll(values);
return this;
}
private java.util.List processingInstructions_ =
java.util.Collections.emptyList();
private void ensureProcessingInstructionsIsMutable() {
if (!((bitField0_ & 0x00000020) == 0x00000020)) {
processingInstructions_ = new java.util.ArrayList(processingInstructions_);
bitField0_ |= 0x00000020;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.axoniq.axonserver.grpc.ProcessingInstruction, io.axoniq.axonserver.grpc.ProcessingInstruction.Builder, io.axoniq.axonserver.grpc.ProcessingInstructionOrBuilder> processingInstructionsBuilder_;
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public java.util.List getProcessingInstructionsList() {
if (processingInstructionsBuilder_ == null) {
return java.util.Collections.unmodifiableList(processingInstructions_);
} else {
return processingInstructionsBuilder_.getMessageList();
}
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public int getProcessingInstructionsCount() {
if (processingInstructionsBuilder_ == null) {
return processingInstructions_.size();
} else {
return processingInstructionsBuilder_.getCount();
}
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public io.axoniq.axonserver.grpc.ProcessingInstruction getProcessingInstructions(int index) {
if (processingInstructionsBuilder_ == null) {
return processingInstructions_.get(index);
} else {
return processingInstructionsBuilder_.getMessage(index);
}
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public Builder setProcessingInstructions(
int index, io.axoniq.axonserver.grpc.ProcessingInstruction value) {
if (processingInstructionsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureProcessingInstructionsIsMutable();
processingInstructions_.set(index, value);
onChanged();
} else {
processingInstructionsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public Builder setProcessingInstructions(
int index, io.axoniq.axonserver.grpc.ProcessingInstruction.Builder builderForValue) {
if (processingInstructionsBuilder_ == null) {
ensureProcessingInstructionsIsMutable();
processingInstructions_.set(index, builderForValue.build());
onChanged();
} else {
processingInstructionsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public Builder addProcessingInstructions(io.axoniq.axonserver.grpc.ProcessingInstruction value) {
if (processingInstructionsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureProcessingInstructionsIsMutable();
processingInstructions_.add(value);
onChanged();
} else {
processingInstructionsBuilder_.addMessage(value);
}
return this;
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public Builder addProcessingInstructions(
int index, io.axoniq.axonserver.grpc.ProcessingInstruction value) {
if (processingInstructionsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureProcessingInstructionsIsMutable();
processingInstructions_.add(index, value);
onChanged();
} else {
processingInstructionsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public Builder addProcessingInstructions(
io.axoniq.axonserver.grpc.ProcessingInstruction.Builder builderForValue) {
if (processingInstructionsBuilder_ == null) {
ensureProcessingInstructionsIsMutable();
processingInstructions_.add(builderForValue.build());
onChanged();
} else {
processingInstructionsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public Builder addProcessingInstructions(
int index, io.axoniq.axonserver.grpc.ProcessingInstruction.Builder builderForValue) {
if (processingInstructionsBuilder_ == null) {
ensureProcessingInstructionsIsMutable();
processingInstructions_.add(index, builderForValue.build());
onChanged();
} else {
processingInstructionsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public Builder addAllProcessingInstructions(
java.lang.Iterable extends io.axoniq.axonserver.grpc.ProcessingInstruction> values) {
if (processingInstructionsBuilder_ == null) {
ensureProcessingInstructionsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, processingInstructions_);
onChanged();
} else {
processingInstructionsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public Builder clearProcessingInstructions() {
if (processingInstructionsBuilder_ == null) {
processingInstructions_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000020);
onChanged();
} else {
processingInstructionsBuilder_.clear();
}
return this;
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public Builder removeProcessingInstructions(int index) {
if (processingInstructionsBuilder_ == null) {
ensureProcessingInstructionsIsMutable();
processingInstructions_.remove(index);
onChanged();
} else {
processingInstructionsBuilder_.remove(index);
}
return this;
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public io.axoniq.axonserver.grpc.ProcessingInstruction.Builder getProcessingInstructionsBuilder(
int index) {
return getProcessingInstructionsFieldBuilder().getBuilder(index);
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public io.axoniq.axonserver.grpc.ProcessingInstructionOrBuilder getProcessingInstructionsOrBuilder(
int index) {
if (processingInstructionsBuilder_ == null) {
return processingInstructions_.get(index); } else {
return processingInstructionsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public java.util.List extends io.axoniq.axonserver.grpc.ProcessingInstructionOrBuilder>
getProcessingInstructionsOrBuilderList() {
if (processingInstructionsBuilder_ != null) {
return processingInstructionsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(processingInstructions_);
}
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public io.axoniq.axonserver.grpc.ProcessingInstruction.Builder addProcessingInstructionsBuilder() {
return getProcessingInstructionsFieldBuilder().addBuilder(
io.axoniq.axonserver.grpc.ProcessingInstruction.getDefaultInstance());
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public io.axoniq.axonserver.grpc.ProcessingInstruction.Builder addProcessingInstructionsBuilder(
int index) {
return getProcessingInstructionsFieldBuilder().addBuilder(
index, io.axoniq.axonserver.grpc.ProcessingInstruction.getDefaultInstance());
}
/**
*
* Instructions for AxonServer when routing this Command Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
public java.util.List
getProcessingInstructionsBuilderList() {
return getProcessingInstructionsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.axoniq.axonserver.grpc.ProcessingInstruction, io.axoniq.axonserver.grpc.ProcessingInstruction.Builder, io.axoniq.axonserver.grpc.ProcessingInstructionOrBuilder>
getProcessingInstructionsFieldBuilder() {
if (processingInstructionsBuilder_ == null) {
processingInstructionsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
io.axoniq.axonserver.grpc.ProcessingInstruction, io.axoniq.axonserver.grpc.ProcessingInstruction.Builder, io.axoniq.axonserver.grpc.ProcessingInstructionOrBuilder>(
processingInstructions_,
((bitField0_ & 0x00000020) == 0x00000020),
getParentForChildren(),
isClean());
processingInstructions_ = null;
}
return processingInstructionsBuilder_;
}
private java.lang.Object clientId_ = "";
/**
*
* The unique identifier of the component dispatching this message
*
*
* string client_id = 7;
*/
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 dispatching this message
*
*
* string client_id = 7;
*/
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 dispatching this message
*
*
* string client_id = 7;
*/
public Builder setClientId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
clientId_ = value;
onChanged();
return this;
}
/**
*
* The unique identifier of the component dispatching this message
*
*
* string client_id = 7;
*/
public Builder clearClientId() {
clientId_ = getDefaultInstance().getClientId();
onChanged();
return this;
}
/**
*
* The unique identifier of the component dispatching this message
*
*
* string client_id = 7;
*/
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/type of the component dispatching this message
*
*
* string component_name = 8;
*/
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 dispatching this message
*
*
* string component_name = 8;
*/
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 dispatching this message
*
*
* string component_name = 8;
*/
public Builder setComponentName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
componentName_ = value;
onChanged();
return this;
}
/**
*
* The name/type of the component dispatching this message
*
*
* string component_name = 8;
*/
public Builder clearComponentName() {
componentName_ = getDefaultInstance().getComponentName();
onChanged();
return this;
}
/**
*
* The name/type of the component dispatching this message
*
*
* string component_name = 8;
*/
public Builder setComponentNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
componentName_ = 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.command.Command)
}
// @@protoc_insertion_point(class_scope:io.axoniq.axonserver.grpc.command.Command)
private static final io.axoniq.axonserver.grpc.command.Command DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.axoniq.axonserver.grpc.command.Command();
}
public static io.axoniq.axonserver.grpc.command.Command getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Command parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new Command(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.Command getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy