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

com.dimajix.flowman.kernel.proto.mapping.ListMappingsResponse 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.ListMappingsResponse}
 */
public final class ListMappingsResponse extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:com.dimajix.flowman.kernel.mapping.ListMappingsResponse)
    ListMappingsResponseOrBuilder {
private static final long serialVersionUID = 0L;
  // Use ListMappingsResponse.newBuilder() to construct.
  private ListMappingsResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private ListMappingsResponse() {
    mappings_ = java.util.Collections.emptyList();
  }

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

  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return com.dimajix.flowman.kernel.proto.mapping.MappingProto.internal_static_com_dimajix_flowman_kernel_mapping_ListMappingsResponse_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_ListMappingsResponse_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.dimajix.flowman.kernel.proto.mapping.ListMappingsResponse.class, com.dimajix.flowman.kernel.proto.mapping.ListMappingsResponse.Builder.class);
  }

  public static final int MAPPINGS_FIELD_NUMBER = 1;
  @SuppressWarnings("serial")
  private java.util.List mappings_;
  /**
   * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
   */
  @java.lang.Override
  public java.util.List getMappingsList() {
    return mappings_;
  }
  /**
   * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
   */
  @java.lang.Override
  public java.util.List 
      getMappingsOrBuilderList() {
    return mappings_;
  }
  /**
   * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
   */
  @java.lang.Override
  public int getMappingsCount() {
    return mappings_.size();
  }
  /**
   * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
   */
  @java.lang.Override
  public com.dimajix.flowman.kernel.proto.MappingIdentifier getMappings(int index) {
    return mappings_.get(index);
  }
  /**
   * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
   */
  @java.lang.Override
  public com.dimajix.flowman.kernel.proto.MappingIdentifierOrBuilder getMappingsOrBuilder(
      int index) {
    return mappings_.get(index);
  }

  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 {
    for (int i = 0; i < mappings_.size(); i++) {
      output.writeMessage(1, mappings_.get(i));
    }
    getUnknownFields().writeTo(output);
  }

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

    size = 0;
    for (int i = 0; i < mappings_.size(); i++) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(1, mappings_.get(i));
    }
    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.ListMappingsResponse)) {
      return super.equals(obj);
    }
    com.dimajix.flowman.kernel.proto.mapping.ListMappingsResponse other = (com.dimajix.flowman.kernel.proto.mapping.ListMappingsResponse) obj;

    if (!getMappingsList()
        .equals(other.getMappingsList())) 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();
    if (getMappingsCount() > 0) {
      hash = (37 * hash) + MAPPINGS_FIELD_NUMBER;
      hash = (53 * hash) + getMappingsList().hashCode();
    }
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static com.dimajix.flowman.kernel.proto.mapping.ListMappingsResponse parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.dimajix.flowman.kernel.proto.mapping.ListMappingsResponse 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.ListMappingsResponse parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.dimajix.flowman.kernel.proto.mapping.ListMappingsResponse 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.ListMappingsResponse parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.dimajix.flowman.kernel.proto.mapping.ListMappingsResponse 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.ListMappingsResponse 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.ListMappingsResponse 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.ListMappingsResponse 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.ListMappingsResponse 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.ListMappingsResponse 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.ListMappingsResponse 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.ListMappingsResponse 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.ListMappingsResponse}
   */
  public static final class Builder extends
      com.google.protobuf.GeneratedMessageV3.Builder implements
      // @@protoc_insertion_point(builder_implements:com.dimajix.flowman.kernel.mapping.ListMappingsResponse)
      com.dimajix.flowman.kernel.proto.mapping.ListMappingsResponseOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return com.dimajix.flowman.kernel.proto.mapping.MappingProto.internal_static_com_dimajix_flowman_kernel_mapping_ListMappingsResponse_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_ListMappingsResponse_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              com.dimajix.flowman.kernel.proto.mapping.ListMappingsResponse.class, com.dimajix.flowman.kernel.proto.mapping.ListMappingsResponse.Builder.class);
    }

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

    }

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

    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      if (mappingsBuilder_ == null) {
        mappings_ = java.util.Collections.emptyList();
      } else {
        mappings_ = null;
        mappingsBuilder_.clear();
      }
      bitField0_ = (bitField0_ & ~0x00000001);
      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_ListMappingsResponse_descriptor;
    }

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

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

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

    private void buildPartialRepeatedFields(com.dimajix.flowman.kernel.proto.mapping.ListMappingsResponse result) {
      if (mappingsBuilder_ == null) {
        if (((bitField0_ & 0x00000001) != 0)) {
          mappings_ = java.util.Collections.unmodifiableList(mappings_);
          bitField0_ = (bitField0_ & ~0x00000001);
        }
        result.mappings_ = mappings_;
      } else {
        result.mappings_ = mappingsBuilder_.build();
      }
    }

    private void buildPartial0(com.dimajix.flowman.kernel.proto.mapping.ListMappingsResponse result) {
      int from_bitField0_ = bitField0_;
    }

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

    public Builder mergeFrom(com.dimajix.flowman.kernel.proto.mapping.ListMappingsResponse other) {
      if (other == com.dimajix.flowman.kernel.proto.mapping.ListMappingsResponse.getDefaultInstance()) return this;
      if (mappingsBuilder_ == null) {
        if (!other.mappings_.isEmpty()) {
          if (mappings_.isEmpty()) {
            mappings_ = other.mappings_;
            bitField0_ = (bitField0_ & ~0x00000001);
          } else {
            ensureMappingsIsMutable();
            mappings_.addAll(other.mappings_);
          }
          onChanged();
        }
      } else {
        if (!other.mappings_.isEmpty()) {
          if (mappingsBuilder_.isEmpty()) {
            mappingsBuilder_.dispose();
            mappingsBuilder_ = null;
            mappings_ = other.mappings_;
            bitField0_ = (bitField0_ & ~0x00000001);
            mappingsBuilder_ = 
              com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
                 getMappingsFieldBuilder() : null;
          } else {
            mappingsBuilder_.addAllMessages(other.mappings_);
          }
        }
      }
      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: {
              com.dimajix.flowman.kernel.proto.MappingIdentifier m =
                  input.readMessage(
                      com.dimajix.flowman.kernel.proto.MappingIdentifier.parser(),
                      extensionRegistry);
              if (mappingsBuilder_ == null) {
                ensureMappingsIsMutable();
                mappings_.add(m);
              } else {
                mappingsBuilder_.addMessage(m);
              }
              break;
            } // case 10
            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.util.List mappings_ =
      java.util.Collections.emptyList();
    private void ensureMappingsIsMutable() {
      if (!((bitField0_ & 0x00000001) != 0)) {
        mappings_ = new java.util.ArrayList(mappings_);
        bitField0_ |= 0x00000001;
       }
    }

    private com.google.protobuf.RepeatedFieldBuilderV3<
        com.dimajix.flowman.kernel.proto.MappingIdentifier, com.dimajix.flowman.kernel.proto.MappingIdentifier.Builder, com.dimajix.flowman.kernel.proto.MappingIdentifierOrBuilder> mappingsBuilder_;

    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public java.util.List getMappingsList() {
      if (mappingsBuilder_ == null) {
        return java.util.Collections.unmodifiableList(mappings_);
      } else {
        return mappingsBuilder_.getMessageList();
      }
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public int getMappingsCount() {
      if (mappingsBuilder_ == null) {
        return mappings_.size();
      } else {
        return mappingsBuilder_.getCount();
      }
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public com.dimajix.flowman.kernel.proto.MappingIdentifier getMappings(int index) {
      if (mappingsBuilder_ == null) {
        return mappings_.get(index);
      } else {
        return mappingsBuilder_.getMessage(index);
      }
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public Builder setMappings(
        int index, com.dimajix.flowman.kernel.proto.MappingIdentifier value) {
      if (mappingsBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureMappingsIsMutable();
        mappings_.set(index, value);
        onChanged();
      } else {
        mappingsBuilder_.setMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public Builder setMappings(
        int index, com.dimajix.flowman.kernel.proto.MappingIdentifier.Builder builderForValue) {
      if (mappingsBuilder_ == null) {
        ensureMappingsIsMutable();
        mappings_.set(index, builderForValue.build());
        onChanged();
      } else {
        mappingsBuilder_.setMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public Builder addMappings(com.dimajix.flowman.kernel.proto.MappingIdentifier value) {
      if (mappingsBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureMappingsIsMutable();
        mappings_.add(value);
        onChanged();
      } else {
        mappingsBuilder_.addMessage(value);
      }
      return this;
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public Builder addMappings(
        int index, com.dimajix.flowman.kernel.proto.MappingIdentifier value) {
      if (mappingsBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureMappingsIsMutable();
        mappings_.add(index, value);
        onChanged();
      } else {
        mappingsBuilder_.addMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public Builder addMappings(
        com.dimajix.flowman.kernel.proto.MappingIdentifier.Builder builderForValue) {
      if (mappingsBuilder_ == null) {
        ensureMappingsIsMutable();
        mappings_.add(builderForValue.build());
        onChanged();
      } else {
        mappingsBuilder_.addMessage(builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public Builder addMappings(
        int index, com.dimajix.flowman.kernel.proto.MappingIdentifier.Builder builderForValue) {
      if (mappingsBuilder_ == null) {
        ensureMappingsIsMutable();
        mappings_.add(index, builderForValue.build());
        onChanged();
      } else {
        mappingsBuilder_.addMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public Builder addAllMappings(
        java.lang.Iterable values) {
      if (mappingsBuilder_ == null) {
        ensureMappingsIsMutable();
        com.google.protobuf.AbstractMessageLite.Builder.addAll(
            values, mappings_);
        onChanged();
      } else {
        mappingsBuilder_.addAllMessages(values);
      }
      return this;
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public Builder clearMappings() {
      if (mappingsBuilder_ == null) {
        mappings_ = java.util.Collections.emptyList();
        bitField0_ = (bitField0_ & ~0x00000001);
        onChanged();
      } else {
        mappingsBuilder_.clear();
      }
      return this;
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public Builder removeMappings(int index) {
      if (mappingsBuilder_ == null) {
        ensureMappingsIsMutable();
        mappings_.remove(index);
        onChanged();
      } else {
        mappingsBuilder_.remove(index);
      }
      return this;
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public com.dimajix.flowman.kernel.proto.MappingIdentifier.Builder getMappingsBuilder(
        int index) {
      return getMappingsFieldBuilder().getBuilder(index);
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public com.dimajix.flowman.kernel.proto.MappingIdentifierOrBuilder getMappingsOrBuilder(
        int index) {
      if (mappingsBuilder_ == null) {
        return mappings_.get(index);  } else {
        return mappingsBuilder_.getMessageOrBuilder(index);
      }
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public java.util.List 
         getMappingsOrBuilderList() {
      if (mappingsBuilder_ != null) {
        return mappingsBuilder_.getMessageOrBuilderList();
      } else {
        return java.util.Collections.unmodifiableList(mappings_);
      }
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public com.dimajix.flowman.kernel.proto.MappingIdentifier.Builder addMappingsBuilder() {
      return getMappingsFieldBuilder().addBuilder(
          com.dimajix.flowman.kernel.proto.MappingIdentifier.getDefaultInstance());
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public com.dimajix.flowman.kernel.proto.MappingIdentifier.Builder addMappingsBuilder(
        int index) {
      return getMappingsFieldBuilder().addBuilder(
          index, com.dimajix.flowman.kernel.proto.MappingIdentifier.getDefaultInstance());
    }
    /**
     * repeated .com.dimajix.flowman.kernel.MappingIdentifier mappings = 1;
     */
    public java.util.List 
         getMappingsBuilderList() {
      return getMappingsFieldBuilder().getBuilderList();
    }
    private com.google.protobuf.RepeatedFieldBuilderV3<
        com.dimajix.flowman.kernel.proto.MappingIdentifier, com.dimajix.flowman.kernel.proto.MappingIdentifier.Builder, com.dimajix.flowman.kernel.proto.MappingIdentifierOrBuilder> 
        getMappingsFieldBuilder() {
      if (mappingsBuilder_ == null) {
        mappingsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
            com.dimajix.flowman.kernel.proto.MappingIdentifier, com.dimajix.flowman.kernel.proto.MappingIdentifier.Builder, com.dimajix.flowman.kernel.proto.MappingIdentifierOrBuilder>(
                mappings_,
                ((bitField0_ & 0x00000001) != 0),
                getParentForChildren(),
                isClean());
        mappings_ = null;
      }
      return mappingsBuilder_;
    }
    @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.ListMappingsResponse)
  }

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

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

  private static final com.google.protobuf.Parser
      PARSER = new com.google.protobuf.AbstractParser() {
    @java.lang.Override
    public ListMappingsResponse 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.ListMappingsResponse getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy