All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.expedia.open.tracing.Batch Maven / Gradle / Ivy

Go to download

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: span.proto

package com.expedia.open.tracing;

/**
 * 
 * You can optionally use Batch to send a collection of spans. Spans may not necessarily belong to one traceId.
 * 
* * Protobuf type {@code Batch} */ public final class Batch extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:Batch) BatchOrBuilder { // Use Batch.newBuilder() to construct. private Batch(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private Batch() { spans_ = java.util.Collections.emptyList(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } private Batch( 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 10: { if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) { spans_ = new java.util.ArrayList(); mutable_bitField0_ |= 0x00000001; } spans_.add( input.readMessage(com.expedia.open.tracing.Span.parser(), extensionRegistry)); 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_ & 0x00000001) == 0x00000001)) { spans_ = java.util.Collections.unmodifiableList(spans_); } makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.expedia.open.tracing.SpanOuterClass.internal_static_Batch_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.expedia.open.tracing.SpanOuterClass.internal_static_Batch_fieldAccessorTable .ensureFieldAccessorsInitialized( com.expedia.open.tracing.Batch.class, com.expedia.open.tracing.Batch.Builder.class); } public static final int SPANS_FIELD_NUMBER = 1; private java.util.List spans_; /** *
   * a collection of spans emitted from the process/service
   * 
* * repeated .Span spans = 1; */ public java.util.List getSpansList() { return spans_; } /** *
   * a collection of spans emitted from the process/service
   * 
* * repeated .Span spans = 1; */ public java.util.List getSpansOrBuilderList() { return spans_; } /** *
   * a collection of spans emitted from the process/service
   * 
* * repeated .Span spans = 1; */ public int getSpansCount() { return spans_.size(); } /** *
   * a collection of spans emitted from the process/service
   * 
* * repeated .Span spans = 1; */ public com.expedia.open.tracing.Span getSpans(int index) { return spans_.get(index); } /** *
   * a collection of spans emitted from the process/service
   * 
* * repeated .Span spans = 1; */ public com.expedia.open.tracing.SpanOrBuilder getSpansOrBuilder( int index) { return spans_.get(index); } 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 { for (int i = 0; i < spans_.size(); i++) { output.writeMessage(1, spans_.get(i)); } } public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; for (int i = 0; i < spans_.size(); i++) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, spans_.get(i)); } 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.Batch)) { return super.equals(obj); } com.expedia.open.tracing.Batch other = (com.expedia.open.tracing.Batch) obj; boolean result = true; result = result && getSpansList() .equals(other.getSpansList()); return result; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptorForType().hashCode(); if (getSpansCount() > 0) { hash = (37 * hash) + SPANS_FIELD_NUMBER; hash = (53 * hash) + getSpansList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.expedia.open.tracing.Batch parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.expedia.open.tracing.Batch 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.Batch parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.expedia.open.tracing.Batch parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.expedia.open.tracing.Batch parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.expedia.open.tracing.Batch 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.Batch parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.expedia.open.tracing.Batch 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.Batch parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.expedia.open.tracing.Batch 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.Batch 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; } /** *
   * You can optionally use Batch to send a collection of spans. Spans may not necessarily belong to one traceId.
   * 
* * Protobuf type {@code Batch} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:Batch) com.expedia.open.tracing.BatchOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.expedia.open.tracing.SpanOuterClass.internal_static_Batch_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.expedia.open.tracing.SpanOuterClass.internal_static_Batch_fieldAccessorTable .ensureFieldAccessorsInitialized( com.expedia.open.tracing.Batch.class, com.expedia.open.tracing.Batch.Builder.class); } // Construct using com.expedia.open.tracing.Batch.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getSpansFieldBuilder(); } } public Builder clear() { super.clear(); if (spansBuilder_ == null) { spans_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); } else { spansBuilder_.clear(); } return this; } public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.expedia.open.tracing.SpanOuterClass.internal_static_Batch_descriptor; } public com.expedia.open.tracing.Batch getDefaultInstanceForType() { return com.expedia.open.tracing.Batch.getDefaultInstance(); } public com.expedia.open.tracing.Batch build() { com.expedia.open.tracing.Batch result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } public com.expedia.open.tracing.Batch buildPartial() { com.expedia.open.tracing.Batch result = new com.expedia.open.tracing.Batch(this); int from_bitField0_ = bitField0_; if (spansBuilder_ == null) { if (((bitField0_ & 0x00000001) == 0x00000001)) { spans_ = java.util.Collections.unmodifiableList(spans_); bitField0_ = (bitField0_ & ~0x00000001); } result.spans_ = spans_; } else { result.spans_ = spansBuilder_.build(); } 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.Batch) { return mergeFrom((com.expedia.open.tracing.Batch)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.expedia.open.tracing.Batch other) { if (other == com.expedia.open.tracing.Batch.getDefaultInstance()) return this; if (spansBuilder_ == null) { if (!other.spans_.isEmpty()) { if (spans_.isEmpty()) { spans_ = other.spans_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureSpansIsMutable(); spans_.addAll(other.spans_); } onChanged(); } } else { if (!other.spans_.isEmpty()) { if (spansBuilder_.isEmpty()) { spansBuilder_.dispose(); spansBuilder_ = null; spans_ = other.spans_; bitField0_ = (bitField0_ & ~0x00000001); spansBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getSpansFieldBuilder() : null; } else { spansBuilder_.addAllMessages(other.spans_); } } } 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.Batch parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.expedia.open.tracing.Batch) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.util.List spans_ = java.util.Collections.emptyList(); private void ensureSpansIsMutable() { if (!((bitField0_ & 0x00000001) == 0x00000001)) { spans_ = new java.util.ArrayList(spans_); bitField0_ |= 0x00000001; } } private com.google.protobuf.RepeatedFieldBuilderV3< com.expedia.open.tracing.Span, com.expedia.open.tracing.Span.Builder, com.expedia.open.tracing.SpanOrBuilder> spansBuilder_; /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public java.util.List getSpansList() { if (spansBuilder_ == null) { return java.util.Collections.unmodifiableList(spans_); } else { return spansBuilder_.getMessageList(); } } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public int getSpansCount() { if (spansBuilder_ == null) { return spans_.size(); } else { return spansBuilder_.getCount(); } } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public com.expedia.open.tracing.Span getSpans(int index) { if (spansBuilder_ == null) { return spans_.get(index); } else { return spansBuilder_.getMessage(index); } } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public Builder setSpans( int index, com.expedia.open.tracing.Span value) { if (spansBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureSpansIsMutable(); spans_.set(index, value); onChanged(); } else { spansBuilder_.setMessage(index, value); } return this; } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public Builder setSpans( int index, com.expedia.open.tracing.Span.Builder builderForValue) { if (spansBuilder_ == null) { ensureSpansIsMutable(); spans_.set(index, builderForValue.build()); onChanged(); } else { spansBuilder_.setMessage(index, builderForValue.build()); } return this; } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public Builder addSpans(com.expedia.open.tracing.Span value) { if (spansBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureSpansIsMutable(); spans_.add(value); onChanged(); } else { spansBuilder_.addMessage(value); } return this; } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public Builder addSpans( int index, com.expedia.open.tracing.Span value) { if (spansBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureSpansIsMutable(); spans_.add(index, value); onChanged(); } else { spansBuilder_.addMessage(index, value); } return this; } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public Builder addSpans( com.expedia.open.tracing.Span.Builder builderForValue) { if (spansBuilder_ == null) { ensureSpansIsMutable(); spans_.add(builderForValue.build()); onChanged(); } else { spansBuilder_.addMessage(builderForValue.build()); } return this; } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public Builder addSpans( int index, com.expedia.open.tracing.Span.Builder builderForValue) { if (spansBuilder_ == null) { ensureSpansIsMutable(); spans_.add(index, builderForValue.build()); onChanged(); } else { spansBuilder_.addMessage(index, builderForValue.build()); } return this; } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public Builder addAllSpans( java.lang.Iterable values) { if (spansBuilder_ == null) { ensureSpansIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, spans_); onChanged(); } else { spansBuilder_.addAllMessages(values); } return this; } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public Builder clearSpans() { if (spansBuilder_ == null) { spans_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); } else { spansBuilder_.clear(); } return this; } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public Builder removeSpans(int index) { if (spansBuilder_ == null) { ensureSpansIsMutable(); spans_.remove(index); onChanged(); } else { spansBuilder_.remove(index); } return this; } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public com.expedia.open.tracing.Span.Builder getSpansBuilder( int index) { return getSpansFieldBuilder().getBuilder(index); } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public com.expedia.open.tracing.SpanOrBuilder getSpansOrBuilder( int index) { if (spansBuilder_ == null) { return spans_.get(index); } else { return spansBuilder_.getMessageOrBuilder(index); } } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public java.util.List getSpansOrBuilderList() { if (spansBuilder_ != null) { return spansBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(spans_); } } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public com.expedia.open.tracing.Span.Builder addSpansBuilder() { return getSpansFieldBuilder().addBuilder( com.expedia.open.tracing.Span.getDefaultInstance()); } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public com.expedia.open.tracing.Span.Builder addSpansBuilder( int index) { return getSpansFieldBuilder().addBuilder( index, com.expedia.open.tracing.Span.getDefaultInstance()); } /** *
     * a collection of spans emitted from the process/service
     * 
* * repeated .Span spans = 1; */ public java.util.List getSpansBuilderList() { return getSpansFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< com.expedia.open.tracing.Span, com.expedia.open.tracing.Span.Builder, com.expedia.open.tracing.SpanOrBuilder> getSpansFieldBuilder() { if (spansBuilder_ == null) { spansBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< com.expedia.open.tracing.Span, com.expedia.open.tracing.Span.Builder, com.expedia.open.tracing.SpanOrBuilder>( spans_, ((bitField0_ & 0x00000001) == 0x00000001), getParentForChildren(), isClean()); spans_ = null; } return spansBuilder_; } 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:Batch) } // @@protoc_insertion_point(class_scope:Batch) private static final com.expedia.open.tracing.Batch DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.expedia.open.tracing.Batch(); } public static com.expedia.open.tracing.Batch getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { public Batch parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new Batch(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.Batch getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy