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

com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest Maven / Gradle / Ivy

There is a newer version: 1.2.0-synapse3.3-spark3.3-hadoop3.3
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: mapping.proto

package com.dimajix.flowman.kernel.proto.mapping;

/**
 * Protobuf type {@code com.dimajix.flowman.kernel.mapping.CountMappingRequest}
 */
public final class CountMappingRequest extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:com.dimajix.flowman.kernel.mapping.CountMappingRequest)
    CountMappingRequestOrBuilder {
private static final long serialVersionUID = 0L;
  // Use CountMappingRequest.newBuilder() to construct.
  private CountMappingRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private CountMappingRequest() {
    sessionId_ = "";
    output_ = "";
  }

  @java.lang.Override
  @SuppressWarnings({"unused"})
  protected java.lang.Object newInstance(
      UnusedPrivateParameter unused) {
    return new CountMappingRequest();
  }

  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return com.dimajix.flowman.kernel.proto.mapping.MappingProto.internal_static_com_dimajix_flowman_kernel_mapping_CountMappingRequest_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return com.dimajix.flowman.kernel.proto.mapping.MappingProto.internal_static_com_dimajix_flowman_kernel_mapping_CountMappingRequest_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest.class, com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest.Builder.class);
  }

  private int bitField0_;
  public static final int SESSIONID_FIELD_NUMBER = 1;
  @SuppressWarnings("serial")
  private volatile java.lang.Object sessionId_ = "";
  /**
   * string sessionId = 1;
   * @return The sessionId.
   */
  @java.lang.Override
  public java.lang.String getSessionId() {
    java.lang.Object ref = sessionId_;
    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();
      sessionId_ = s;
      return s;
    }
  }
  /**
   * string sessionId = 1;
   * @return The bytes for sessionId.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString
      getSessionIdBytes() {
    java.lang.Object ref = sessionId_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b = 
          com.google.protobuf.ByteString.copyFromUtf8(
              (java.lang.String) ref);
      sessionId_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int MAPPING_FIELD_NUMBER = 2;
  private com.dimajix.flowman.kernel.proto.MappingIdentifier mapping_;
  /**
   * .com.dimajix.flowman.kernel.MappingIdentifier mapping = 2;
   * @return Whether the mapping field is set.
   */
  @java.lang.Override
  public boolean hasMapping() {
    return mapping_ != null;
  }
  /**
   * .com.dimajix.flowman.kernel.MappingIdentifier mapping = 2;
   * @return The mapping.
   */
  @java.lang.Override
  public com.dimajix.flowman.kernel.proto.MappingIdentifier getMapping() {
    return mapping_ == null ? com.dimajix.flowman.kernel.proto.MappingIdentifier.getDefaultInstance() : mapping_;
  }
  /**
   * .com.dimajix.flowman.kernel.MappingIdentifier mapping = 2;
   */
  @java.lang.Override
  public com.dimajix.flowman.kernel.proto.MappingIdentifierOrBuilder getMappingOrBuilder() {
    return mapping_ == null ? com.dimajix.flowman.kernel.proto.MappingIdentifier.getDefaultInstance() : mapping_;
  }

  public static final int OUTPUT_FIELD_NUMBER = 3;
  @SuppressWarnings("serial")
  private volatile java.lang.Object output_ = "";
  /**
   * optional string output = 3;
   * @return Whether the output field is set.
   */
  @java.lang.Override
  public boolean hasOutput() {
    return ((bitField0_ & 0x00000001) != 0);
  }
  /**
   * optional string output = 3;
   * @return The output.
   */
  @java.lang.Override
  public java.lang.String getOutput() {
    java.lang.Object ref = output_;
    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();
      output_ = s;
      return s;
    }
  }
  /**
   * optional string output = 3;
   * @return The bytes for output.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString
      getOutputBytes() {
    java.lang.Object ref = output_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b = 
          com.google.protobuf.ByteString.copyFromUtf8(
              (java.lang.String) ref);
      output_ = 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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(sessionId_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 1, sessionId_);
    }
    if (mapping_ != null) {
      output.writeMessage(2, getMapping());
    }
    if (((bitField0_ & 0x00000001) != 0)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 3, output_);
    }
    getUnknownFields().writeTo(output);
  }

  @java.lang.Override
  public int getSerializedSize() {
    int size = memoizedSize;
    if (size != -1) return size;

    size = 0;
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(sessionId_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, sessionId_);
    }
    if (mapping_ != null) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(2, getMapping());
    }
    if (((bitField0_ & 0x00000001) != 0)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, output_);
    }
    size += getUnknownFields().getSerializedSize();
    memoizedSize = size;
    return size;
  }

  @java.lang.Override
  public boolean equals(final java.lang.Object obj) {
    if (obj == this) {
     return true;
    }
    if (!(obj instanceof com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest)) {
      return super.equals(obj);
    }
    com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest other = (com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest) obj;

    if (!getSessionId()
        .equals(other.getSessionId())) return false;
    if (hasMapping() != other.hasMapping()) return false;
    if (hasMapping()) {
      if (!getMapping()
          .equals(other.getMapping())) return false;
    }
    if (hasOutput() != other.hasOutput()) return false;
    if (hasOutput()) {
      if (!getOutput()
          .equals(other.getOutput())) return false;
    }
    if (!getUnknownFields().equals(other.getUnknownFields())) return false;
    return true;
  }

  @java.lang.Override
  public int hashCode() {
    if (memoizedHashCode != 0) {
      return memoizedHashCode;
    }
    int hash = 41;
    hash = (19 * hash) + getDescriptor().hashCode();
    hash = (37 * hash) + SESSIONID_FIELD_NUMBER;
    hash = (53 * hash) + getSessionId().hashCode();
    if (hasMapping()) {
      hash = (37 * hash) + MAPPING_FIELD_NUMBER;
      hash = (53 * hash) + getMapping().hashCode();
    }
    if (hasOutput()) {
      hash = (37 * hash) + OUTPUT_FIELD_NUMBER;
      hash = (53 * hash) + getOutput().hashCode();
    }
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest parseFrom(
      java.nio.ByteBuffer data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest parseFrom(
      byte[] data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest 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.dimajix.flowman.kernel.proto.mapping.CountMappingRequest parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input);
  }
  public static com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest 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.dimajix.flowman.kernel.proto.mapping.CountMappingRequest parseFrom(
      com.google.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest 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(com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest 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;
  }
  /**
   * Protobuf type {@code com.dimajix.flowman.kernel.mapping.CountMappingRequest}
   */
  public static final class Builder extends
      com.google.protobuf.GeneratedMessageV3.Builder implements
      // @@protoc_insertion_point(builder_implements:com.dimajix.flowman.kernel.mapping.CountMappingRequest)
      com.dimajix.flowman.kernel.proto.mapping.CountMappingRequestOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return com.dimajix.flowman.kernel.proto.mapping.MappingProto.internal_static_com_dimajix_flowman_kernel_mapping_CountMappingRequest_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return com.dimajix.flowman.kernel.proto.mapping.MappingProto.internal_static_com_dimajix_flowman_kernel_mapping_CountMappingRequest_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest.class, com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest.Builder.class);
    }

    // Construct using com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest.newBuilder()
    private Builder() {

    }

    private Builder(
        com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);

    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      sessionId_ = "";
      mapping_ = null;
      if (mappingBuilder_ != null) {
        mappingBuilder_.dispose();
        mappingBuilder_ = null;
      }
      output_ = "";
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return com.dimajix.flowman.kernel.proto.mapping.MappingProto.internal_static_com_dimajix_flowman_kernel_mapping_CountMappingRequest_descriptor;
    }

    @java.lang.Override
    public com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest getDefaultInstanceForType() {
      return com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest.getDefaultInstance();
    }

    @java.lang.Override
    public com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest build() {
      com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest buildPartial() {
      com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest result = new com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest(this);
      if (bitField0_ != 0) { buildPartial0(result); }
      onBuilt();
      return result;
    }

    private void buildPartial0(com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.sessionId_ = sessionId_;
      }
      if (((from_bitField0_ & 0x00000002) != 0)) {
        result.mapping_ = mappingBuilder_ == null
            ? mapping_
            : mappingBuilder_.build();
      }
      int to_bitField0_ = 0;
      if (((from_bitField0_ & 0x00000004) != 0)) {
        result.output_ = output_;
        to_bitField0_ |= 0x00000001;
      }
      result.bitField0_ |= to_bitField0_;
    }

    @java.lang.Override
    public Builder mergeFrom(com.google.protobuf.Message other) {
      if (other instanceof com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest) {
        return mergeFrom((com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest)other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest other) {
      if (other == com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest.getDefaultInstance()) return this;
      if (!other.getSessionId().isEmpty()) {
        sessionId_ = other.sessionId_;
        bitField0_ |= 0x00000001;
        onChanged();
      }
      if (other.hasMapping()) {
        mergeMapping(other.getMapping());
      }
      if (other.hasOutput()) {
        output_ = other.output_;
        bitField0_ |= 0x00000004;
        onChanged();
      }
      this.mergeUnknownFields(other.getUnknownFields());
      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 {
      if (extensionRegistry == null) {
        throw new java.lang.NullPointerException();
      }
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            case 10: {
              sessionId_ = input.readStringRequireUtf8();
              bitField0_ |= 0x00000001;
              break;
            } // case 10
            case 18: {
              input.readMessage(
                  getMappingFieldBuilder().getBuilder(),
                  extensionRegistry);
              bitField0_ |= 0x00000002;
              break;
            } // case 18
            case 26: {
              output_ = input.readStringRequireUtf8();
              bitField0_ |= 0x00000004;
              break;
            } // case 26
            default: {
              if (!super.parseUnknownField(input, extensionRegistry, tag)) {
                done = true; // was an endgroup tag
              }
              break;
            } // default:
          } // switch (tag)
        } // while (!done)
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.unwrapIOException();
      } finally {
        onChanged();
      } // finally
      return this;
    }
    private int bitField0_;

    private java.lang.Object sessionId_ = "";
    /**
     * string sessionId = 1;
     * @return The sessionId.
     */
    public java.lang.String getSessionId() {
      java.lang.Object ref = sessionId_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs =
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        sessionId_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     * string sessionId = 1;
     * @return The bytes for sessionId.
     */
    public com.google.protobuf.ByteString
        getSessionIdBytes() {
      java.lang.Object ref = sessionId_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        sessionId_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     * string sessionId = 1;
     * @param value The sessionId to set.
     * @return This builder for chaining.
     */
    public Builder setSessionId(
        java.lang.String value) {
      if (value == null) { throw new NullPointerException(); }
      sessionId_ = value;
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * string sessionId = 1;
     * @return This builder for chaining.
     */
    public Builder clearSessionId() {
      sessionId_ = getDefaultInstance().getSessionId();
      bitField0_ = (bitField0_ & ~0x00000001);
      onChanged();
      return this;
    }
    /**
     * string sessionId = 1;
     * @param value The bytes for sessionId to set.
     * @return This builder for chaining.
     */
    public Builder setSessionIdBytes(
        com.google.protobuf.ByteString value) {
      if (value == null) { throw new NullPointerException(); }
      checkByteStringIsUtf8(value);
      sessionId_ = value;
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }

    private com.dimajix.flowman.kernel.proto.MappingIdentifier mapping_;
    private com.google.protobuf.SingleFieldBuilderV3<
        com.dimajix.flowman.kernel.proto.MappingIdentifier, com.dimajix.flowman.kernel.proto.MappingIdentifier.Builder, com.dimajix.flowman.kernel.proto.MappingIdentifierOrBuilder> mappingBuilder_;
    /**
     * .com.dimajix.flowman.kernel.MappingIdentifier mapping = 2;
     * @return Whether the mapping field is set.
     */
    public boolean hasMapping() {
      return ((bitField0_ & 0x00000002) != 0);
    }
    /**
     * .com.dimajix.flowman.kernel.MappingIdentifier mapping = 2;
     * @return The mapping.
     */
    public com.dimajix.flowman.kernel.proto.MappingIdentifier getMapping() {
      if (mappingBuilder_ == null) {
        return mapping_ == null ? com.dimajix.flowman.kernel.proto.MappingIdentifier.getDefaultInstance() : mapping_;
      } else {
        return mappingBuilder_.getMessage();
      }
    }
    /**
     * .com.dimajix.flowman.kernel.MappingIdentifier mapping = 2;
     */
    public Builder setMapping(com.dimajix.flowman.kernel.proto.MappingIdentifier value) {
      if (mappingBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        mapping_ = value;
      } else {
        mappingBuilder_.setMessage(value);
      }
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     * .com.dimajix.flowman.kernel.MappingIdentifier mapping = 2;
     */
    public Builder setMapping(
        com.dimajix.flowman.kernel.proto.MappingIdentifier.Builder builderForValue) {
      if (mappingBuilder_ == null) {
        mapping_ = builderForValue.build();
      } else {
        mappingBuilder_.setMessage(builderForValue.build());
      }
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     * .com.dimajix.flowman.kernel.MappingIdentifier mapping = 2;
     */
    public Builder mergeMapping(com.dimajix.flowman.kernel.proto.MappingIdentifier value) {
      if (mappingBuilder_ == null) {
        if (((bitField0_ & 0x00000002) != 0) &&
          mapping_ != null &&
          mapping_ != com.dimajix.flowman.kernel.proto.MappingIdentifier.getDefaultInstance()) {
          getMappingBuilder().mergeFrom(value);
        } else {
          mapping_ = value;
        }
      } else {
        mappingBuilder_.mergeFrom(value);
      }
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     * .com.dimajix.flowman.kernel.MappingIdentifier mapping = 2;
     */
    public Builder clearMapping() {
      bitField0_ = (bitField0_ & ~0x00000002);
      mapping_ = null;
      if (mappingBuilder_ != null) {
        mappingBuilder_.dispose();
        mappingBuilder_ = null;
      }
      onChanged();
      return this;
    }
    /**
     * .com.dimajix.flowman.kernel.MappingIdentifier mapping = 2;
     */
    public com.dimajix.flowman.kernel.proto.MappingIdentifier.Builder getMappingBuilder() {
      bitField0_ |= 0x00000002;
      onChanged();
      return getMappingFieldBuilder().getBuilder();
    }
    /**
     * .com.dimajix.flowman.kernel.MappingIdentifier mapping = 2;
     */
    public com.dimajix.flowman.kernel.proto.MappingIdentifierOrBuilder getMappingOrBuilder() {
      if (mappingBuilder_ != null) {
        return mappingBuilder_.getMessageOrBuilder();
      } else {
        return mapping_ == null ?
            com.dimajix.flowman.kernel.proto.MappingIdentifier.getDefaultInstance() : mapping_;
      }
    }
    /**
     * .com.dimajix.flowman.kernel.MappingIdentifier mapping = 2;
     */
    private com.google.protobuf.SingleFieldBuilderV3<
        com.dimajix.flowman.kernel.proto.MappingIdentifier, com.dimajix.flowman.kernel.proto.MappingIdentifier.Builder, com.dimajix.flowman.kernel.proto.MappingIdentifierOrBuilder> 
        getMappingFieldBuilder() {
      if (mappingBuilder_ == null) {
        mappingBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
            com.dimajix.flowman.kernel.proto.MappingIdentifier, com.dimajix.flowman.kernel.proto.MappingIdentifier.Builder, com.dimajix.flowman.kernel.proto.MappingIdentifierOrBuilder>(
                getMapping(),
                getParentForChildren(),
                isClean());
        mapping_ = null;
      }
      return mappingBuilder_;
    }

    private java.lang.Object output_ = "";
    /**
     * optional string output = 3;
     * @return Whether the output field is set.
     */
    public boolean hasOutput() {
      return ((bitField0_ & 0x00000004) != 0);
    }
    /**
     * optional string output = 3;
     * @return The output.
     */
    public java.lang.String getOutput() {
      java.lang.Object ref = output_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs =
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        output_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     * optional string output = 3;
     * @return The bytes for output.
     */
    public com.google.protobuf.ByteString
        getOutputBytes() {
      java.lang.Object ref = output_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        output_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     * optional string output = 3;
     * @param value The output to set.
     * @return This builder for chaining.
     */
    public Builder setOutput(
        java.lang.String value) {
      if (value == null) { throw new NullPointerException(); }
      output_ = value;
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     * optional string output = 3;
     * @return This builder for chaining.
     */
    public Builder clearOutput() {
      output_ = getDefaultInstance().getOutput();
      bitField0_ = (bitField0_ & ~0x00000004);
      onChanged();
      return this;
    }
    /**
     * optional string output = 3;
     * @param value The bytes for output to set.
     * @return This builder for chaining.
     */
    public Builder setOutputBytes(
        com.google.protobuf.ByteString value) {
      if (value == null) { throw new NullPointerException(); }
      checkByteStringIsUtf8(value);
      output_ = value;
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    @java.lang.Override
    public final Builder setUnknownFields(
        final com.google.protobuf.UnknownFieldSet unknownFields) {
      return super.setUnknownFields(unknownFields);
    }

    @java.lang.Override
    public final Builder mergeUnknownFields(
        final com.google.protobuf.UnknownFieldSet unknownFields) {
      return super.mergeUnknownFields(unknownFields);
    }


    // @@protoc_insertion_point(builder_scope:com.dimajix.flowman.kernel.mapping.CountMappingRequest)
  }

  // @@protoc_insertion_point(class_scope:com.dimajix.flowman.kernel.mapping.CountMappingRequest)
  private static final com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest();
  }

  public static com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser
      PARSER = new com.google.protobuf.AbstractParser() {
    @java.lang.Override
    public CountMappingRequest parsePartialFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      Builder builder = newBuilder();
      try {
        builder.mergeFrom(input, extensionRegistry);
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(builder.buildPartial());
      } catch (com.google.protobuf.UninitializedMessageException e) {
        throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(e)
            .setUnfinishedMessage(builder.buildPartial());
      }
      return builder.buildPartial();
    }
  };

  public static com.google.protobuf.Parser parser() {
    return PARSER;
  }

  @java.lang.Override
  public com.google.protobuf.Parser getParserForType() {
    return PARSER;
  }

  @java.lang.Override
  public com.dimajix.flowman.kernel.proto.mapping.CountMappingRequest getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy