com.expedia.open.tracing.agent.api.DispatchResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of haystack-secrets-commons Show documentation
Show all versions of haystack-secrets-commons Show documentation
This module contains common code for Haystack modules that detect and mask PCI and PII data;
it also contains code that facilitates writing Kafka Streams applications.
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: agent/spanAgent.proto
package com.expedia.open.tracing.agent.api;
/**
* Protobuf type {@code DispatchResult}
*/
public final class DispatchResult extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:DispatchResult)
DispatchResultOrBuilder {
// Use DispatchResult.newBuilder() to construct.
private DispatchResult(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private DispatchResult() {
code_ = 0;
errorMessage_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return com.google.protobuf.UnknownFieldSet.getDefaultInstance();
}
private DispatchResult(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
int mutable_bitField0_ = 0;
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!input.skipField(tag)) {
done = true;
}
break;
}
case 8: {
int rawValue = input.readEnum();
code_ = rawValue;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
errorMessage_ = s;
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 {
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.expedia.open.tracing.agent.api.SpanAgentOuterClass.internal_static_DispatchResult_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.expedia.open.tracing.agent.api.SpanAgentOuterClass.internal_static_DispatchResult_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.expedia.open.tracing.agent.api.DispatchResult.class, com.expedia.open.tracing.agent.api.DispatchResult.Builder.class);
}
/**
* Protobuf enum {@code DispatchResult.ResultCode}
*/
public enum ResultCode
implements com.google.protobuf.ProtocolMessageEnum {
/**
* SUCCESS = 0;
*/
SUCCESS(0),
/**
* UNKNOWN_ERROR = 1;
*/
UNKNOWN_ERROR(1),
/**
* RATE_LIMIT_ERROR = 2;
*/
RATE_LIMIT_ERROR(2),
UNRECOGNIZED(-1),
;
/**
* SUCCESS = 0;
*/
public static final int SUCCESS_VALUE = 0;
/**
* UNKNOWN_ERROR = 1;
*/
public static final int UNKNOWN_ERROR_VALUE = 1;
/**
* RATE_LIMIT_ERROR = 2;
*/
public static final int RATE_LIMIT_ERROR_VALUE = 2;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static ResultCode valueOf(int value) {
return forNumber(value);
}
public static ResultCode forNumber(int value) {
switch (value) {
case 0: return SUCCESS;
case 1: return UNKNOWN_ERROR;
case 2: return RATE_LIMIT_ERROR;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
ResultCode> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public ResultCode findValueByNumber(int number) {
return ResultCode.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return com.expedia.open.tracing.agent.api.DispatchResult.getDescriptor().getEnumTypes().get(0);
}
private static final ResultCode[] VALUES = values();
public static ResultCode valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private ResultCode(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:DispatchResult.ResultCode)
}
public static final int CODE_FIELD_NUMBER = 1;
private int code_;
/**
*
* result code is 0 for sucessful dipatch only
*
*
* optional .DispatchResult.ResultCode code = 1;
*/
public int getCodeValue() {
return code_;
}
/**
*
* result code is 0 for sucessful dipatch only
*
*
* optional .DispatchResult.ResultCode code = 1;
*/
public com.expedia.open.tracing.agent.api.DispatchResult.ResultCode getCode() {
com.expedia.open.tracing.agent.api.DispatchResult.ResultCode result = com.expedia.open.tracing.agent.api.DispatchResult.ResultCode.valueOf(code_);
return result == null ? com.expedia.open.tracing.agent.api.DispatchResult.ResultCode.UNRECOGNIZED : result;
}
public static final int ERROR_MESSAGE_FIELD_NUMBER = 2;
private volatile java.lang.Object errorMessage_;
/**
*
* error message if result code is non zero
*
*
* optional string error_message = 2;
*/
public java.lang.String getErrorMessage() {
java.lang.Object ref = errorMessage_;
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();
errorMessage_ = s;
return s;
}
}
/**
*
* error message if result code is non zero
*
*
* optional string error_message = 2;
*/
public com.google.protobuf.ByteString
getErrorMessageBytes() {
java.lang.Object ref = errorMessage_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
errorMessage_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (code_ != com.expedia.open.tracing.agent.api.DispatchResult.ResultCode.SUCCESS.getNumber()) {
output.writeEnum(1, code_);
}
if (!getErrorMessageBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, errorMessage_);
}
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (code_ != com.expedia.open.tracing.agent.api.DispatchResult.ResultCode.SUCCESS.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, code_);
}
if (!getErrorMessageBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, errorMessage_);
}
memoizedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.expedia.open.tracing.agent.api.DispatchResult)) {
return super.equals(obj);
}
com.expedia.open.tracing.agent.api.DispatchResult other = (com.expedia.open.tracing.agent.api.DispatchResult) obj;
boolean result = true;
result = result && code_ == other.code_;
result = result && getErrorMessage()
.equals(other.getErrorMessage());
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
hash = (37 * hash) + CODE_FIELD_NUMBER;
hash = (53 * hash) + code_;
hash = (37 * hash) + ERROR_MESSAGE_FIELD_NUMBER;
hash = (53 * hash) + getErrorMessage().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.expedia.open.tracing.agent.api.DispatchResult parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.expedia.open.tracing.agent.api.DispatchResult parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.expedia.open.tracing.agent.api.DispatchResult parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.expedia.open.tracing.agent.api.DispatchResult parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.expedia.open.tracing.agent.api.DispatchResult parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.expedia.open.tracing.agent.api.DispatchResult 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 com.expedia.open.tracing.agent.api.DispatchResult parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.expedia.open.tracing.agent.api.DispatchResult 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 com.expedia.open.tracing.agent.api.DispatchResult parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.expedia.open.tracing.agent.api.DispatchResult parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.expedia.open.tracing.agent.api.DispatchResult prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
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;
}
/**
* Protobuf type {@code DispatchResult}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:DispatchResult)
com.expedia.open.tracing.agent.api.DispatchResultOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.expedia.open.tracing.agent.api.SpanAgentOuterClass.internal_static_DispatchResult_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.expedia.open.tracing.agent.api.SpanAgentOuterClass.internal_static_DispatchResult_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.expedia.open.tracing.agent.api.DispatchResult.class, com.expedia.open.tracing.agent.api.DispatchResult.Builder.class);
}
// Construct using com.expedia.open.tracing.agent.api.DispatchResult.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
public Builder clear() {
super.clear();
code_ = 0;
errorMessage_ = "";
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.expedia.open.tracing.agent.api.SpanAgentOuterClass.internal_static_DispatchResult_descriptor;
}
public com.expedia.open.tracing.agent.api.DispatchResult getDefaultInstanceForType() {
return com.expedia.open.tracing.agent.api.DispatchResult.getDefaultInstance();
}
public com.expedia.open.tracing.agent.api.DispatchResult build() {
com.expedia.open.tracing.agent.api.DispatchResult result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.expedia.open.tracing.agent.api.DispatchResult buildPartial() {
com.expedia.open.tracing.agent.api.DispatchResult result = new com.expedia.open.tracing.agent.api.DispatchResult(this);
result.code_ = code_;
result.errorMessage_ = errorMessage_;
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return (Builder) super.addRepeatedField(field, value);
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.expedia.open.tracing.agent.api.DispatchResult) {
return mergeFrom((com.expedia.open.tracing.agent.api.DispatchResult)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.expedia.open.tracing.agent.api.DispatchResult other) {
if (other == com.expedia.open.tracing.agent.api.DispatchResult.getDefaultInstance()) return this;
if (other.code_ != 0) {
setCodeValue(other.getCodeValue());
}
if (!other.getErrorMessage().isEmpty()) {
errorMessage_ = other.errorMessage_;
onChanged();
}
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.expedia.open.tracing.agent.api.DispatchResult parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.expedia.open.tracing.agent.api.DispatchResult) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int code_ = 0;
/**
*
* result code is 0 for sucessful dipatch only
*
*
* optional .DispatchResult.ResultCode code = 1;
*/
public int getCodeValue() {
return code_;
}
/**
*
* result code is 0 for sucessful dipatch only
*
*
* optional .DispatchResult.ResultCode code = 1;
*/
public Builder setCodeValue(int value) {
code_ = value;
onChanged();
return this;
}
/**
*
* result code is 0 for sucessful dipatch only
*
*
* optional .DispatchResult.ResultCode code = 1;
*/
public com.expedia.open.tracing.agent.api.DispatchResult.ResultCode getCode() {
com.expedia.open.tracing.agent.api.DispatchResult.ResultCode result = com.expedia.open.tracing.agent.api.DispatchResult.ResultCode.valueOf(code_);
return result == null ? com.expedia.open.tracing.agent.api.DispatchResult.ResultCode.UNRECOGNIZED : result;
}
/**
*
* result code is 0 for sucessful dipatch only
*
*
* optional .DispatchResult.ResultCode code = 1;
*/
public Builder setCode(com.expedia.open.tracing.agent.api.DispatchResult.ResultCode value) {
if (value == null) {
throw new NullPointerException();
}
code_ = value.getNumber();
onChanged();
return this;
}
/**
*
* result code is 0 for sucessful dipatch only
*
*
* optional .DispatchResult.ResultCode code = 1;
*/
public Builder clearCode() {
code_ = 0;
onChanged();
return this;
}
private java.lang.Object errorMessage_ = "";
/**
*
* error message if result code is non zero
*
*
* optional string error_message = 2;
*/
public java.lang.String getErrorMessage() {
java.lang.Object ref = errorMessage_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
errorMessage_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* error message if result code is non zero
*
*
* optional string error_message = 2;
*/
public com.google.protobuf.ByteString
getErrorMessageBytes() {
java.lang.Object ref = errorMessage_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
errorMessage_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* error message if result code is non zero
*
*
* optional string error_message = 2;
*/
public Builder setErrorMessage(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
errorMessage_ = value;
onChanged();
return this;
}
/**
*
* error message if result code is non zero
*
*
* optional string error_message = 2;
*/
public Builder clearErrorMessage() {
errorMessage_ = getDefaultInstance().getErrorMessage();
onChanged();
return this;
}
/**
*
* error message if result code is non zero
*
*
* optional string error_message = 2;
*/
public Builder setErrorMessageBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
errorMessage_ = value;
onChanged();
return this;
}
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return this;
}
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return this;
}
// @@protoc_insertion_point(builder_scope:DispatchResult)
}
// @@protoc_insertion_point(class_scope:DispatchResult)
private static final com.expedia.open.tracing.agent.api.DispatchResult DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.expedia.open.tracing.agent.api.DispatchResult();
}
public static com.expedia.open.tracing.agent.api.DispatchResult getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
public DispatchResult parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new DispatchResult(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
public com.expedia.open.tracing.agent.api.DispatchResult getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy