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

org.yamcs.protobuf.AuthInfo Maven / Gradle / Ivy

There is a newer version: 5.10.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: yamcs/protobuf/web/websocket.proto

package org.yamcs.protobuf;

/**
 * Protobuf type {@code yamcs.protobuf.web.AuthInfo}
 */
public  final class AuthInfo extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:yamcs.protobuf.web.AuthInfo)
    AuthInfoOrBuilder {
private static final long serialVersionUID = 0L;
  // Use AuthInfo.newBuilder() to construct.
  private AuthInfo(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private AuthInfo() {
    flow_ = java.util.Collections.emptyList();
  }

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private AuthInfo(
      com.google.protobuf.CodedInputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    this();
    if (extensionRegistry == null) {
      throw new java.lang.NullPointerException();
    }
    int mutable_bitField0_ = 0;
    com.google.protobuf.UnknownFieldSet.Builder unknownFields =
        com.google.protobuf.UnknownFieldSet.newBuilder();
    try {
      boolean done = false;
      while (!done) {
        int tag = input.readTag();
        switch (tag) {
          case 0:
            done = true;
            break;
          case 8: {
            bitField0_ |= 0x00000001;
            requireAuthentication_ = input.readBool();
            break;
          }
          case 18: {
            if (!((mutable_bitField0_ & 0x00000002) != 0)) {
              flow_ = new java.util.ArrayList();
              mutable_bitField0_ |= 0x00000002;
            }
            flow_.add(
                input.readMessage(org.yamcs.protobuf.AuthFlow.PARSER, extensionRegistry));
            break;
          }
          default: {
            if (!parseUnknownField(
                input, unknownFields, extensionRegistry, tag)) {
              done = true;
            }
            break;
          }
        }
      }
    } catch (com.google.protobuf.InvalidProtocolBufferException e) {
      throw e.setUnfinishedMessage(this);
    } catch (java.io.IOException e) {
      throw new com.google.protobuf.InvalidProtocolBufferException(
          e).setUnfinishedMessage(this);
    } finally {
      if (((mutable_bitField0_ & 0x00000002) != 0)) {
        flow_ = java.util.Collections.unmodifiableList(flow_);
      }
      this.unknownFields = unknownFields.build();
      makeExtensionsImmutable();
    }
  }
  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return org.yamcs.protobuf.WebSocketProto.internal_static_yamcs_protobuf_web_AuthInfo_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return org.yamcs.protobuf.WebSocketProto.internal_static_yamcs_protobuf_web_AuthInfo_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            org.yamcs.protobuf.AuthInfo.class, org.yamcs.protobuf.AuthInfo.Builder.class);
  }

  private int bitField0_;
  public static final int REQUIREAUTHENTICATION_FIELD_NUMBER = 1;
  private boolean requireAuthentication_;
  /**
   * optional bool requireAuthentication = 1;
   */
  public boolean hasRequireAuthentication() {
    return ((bitField0_ & 0x00000001) != 0);
  }
  /**
   * optional bool requireAuthentication = 1;
   */
  public boolean getRequireAuthentication() {
    return requireAuthentication_;
  }

  public static final int FLOW_FIELD_NUMBER = 2;
  private java.util.List flow_;
  /**
   * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
   */
  public java.util.List getFlowList() {
    return flow_;
  }
  /**
   * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
   */
  public java.util.List 
      getFlowOrBuilderList() {
    return flow_;
  }
  /**
   * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
   */
  public int getFlowCount() {
    return flow_.size();
  }
  /**
   * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
   */
  public org.yamcs.protobuf.AuthFlow getFlow(int index) {
    return flow_.get(index);
  }
  /**
   * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
   */
  public org.yamcs.protobuf.AuthFlowOrBuilder getFlowOrBuilder(
      int index) {
    return flow_.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 {
    if (((bitField0_ & 0x00000001) != 0)) {
      output.writeBool(1, requireAuthentication_);
    }
    for (int i = 0; i < flow_.size(); i++) {
      output.writeMessage(2, flow_.get(i));
    }
    unknownFields.writeTo(output);
  }

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

    size = 0;
    if (((bitField0_ & 0x00000001) != 0)) {
      size += com.google.protobuf.CodedOutputStream
        .computeBoolSize(1, requireAuthentication_);
    }
    for (int i = 0; i < flow_.size(); i++) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(2, flow_.get(i));
    }
    size += unknownFields.getSerializedSize();
    memoizedSize = size;
    return size;
  }

  @java.lang.Override
  public boolean equals(final java.lang.Object obj) {
    if (obj == this) {
     return true;
    }
    if (!(obj instanceof org.yamcs.protobuf.AuthInfo)) {
      return super.equals(obj);
    }
    org.yamcs.protobuf.AuthInfo other = (org.yamcs.protobuf.AuthInfo) obj;

    if (hasRequireAuthentication() != other.hasRequireAuthentication()) return false;
    if (hasRequireAuthentication()) {
      if (getRequireAuthentication()
          != other.getRequireAuthentication()) return false;
    }
    if (!getFlowList()
        .equals(other.getFlowList())) return false;
    if (!unknownFields.equals(other.unknownFields)) return false;
    return true;
  }

  @java.lang.Override
  public int hashCode() {
    if (memoizedHashCode != 0) {
      return memoizedHashCode;
    }
    int hash = 41;
    hash = (19 * hash) + getDescriptor().hashCode();
    if (hasRequireAuthentication()) {
      hash = (37 * hash) + REQUIREAUTHENTICATION_FIELD_NUMBER;
      hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
          getRequireAuthentication());
    }
    if (getFlowCount() > 0) {
      hash = (37 * hash) + FLOW_FIELD_NUMBER;
      hash = (53 * hash) + getFlowList().hashCode();
    }
    hash = (29 * hash) + unknownFields.hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static org.yamcs.protobuf.AuthInfo parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static org.yamcs.protobuf.AuthInfo parseFrom(
      java.nio.ByteBuffer data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static org.yamcs.protobuf.AuthInfo parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static org.yamcs.protobuf.AuthInfo parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static org.yamcs.protobuf.AuthInfo parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static org.yamcs.protobuf.AuthInfo parseFrom(
      byte[] data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static org.yamcs.protobuf.AuthInfo parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static org.yamcs.protobuf.AuthInfo 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 org.yamcs.protobuf.AuthInfo parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input);
  }
  public static org.yamcs.protobuf.AuthInfo 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 org.yamcs.protobuf.AuthInfo parseFrom(
      com.google.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static org.yamcs.protobuf.AuthInfo 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(org.yamcs.protobuf.AuthInfo 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 yamcs.protobuf.web.AuthInfo}
   */
  public static final class Builder extends
      com.google.protobuf.GeneratedMessageV3.Builder implements
      // @@protoc_insertion_point(builder_implements:yamcs.protobuf.web.AuthInfo)
      org.yamcs.protobuf.AuthInfoOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return org.yamcs.protobuf.WebSocketProto.internal_static_yamcs_protobuf_web_AuthInfo_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return org.yamcs.protobuf.WebSocketProto.internal_static_yamcs_protobuf_web_AuthInfo_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              org.yamcs.protobuf.AuthInfo.class, org.yamcs.protobuf.AuthInfo.Builder.class);
    }

    // Construct using org.yamcs.protobuf.AuthInfo.newBuilder()
    private Builder() {
      maybeForceBuilderInitialization();
    }

    private Builder(
        com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);
      maybeForceBuilderInitialization();
    }
    private void maybeForceBuilderInitialization() {
      if (com.google.protobuf.GeneratedMessageV3
              .alwaysUseFieldBuilders) {
        getFlowFieldBuilder();
      }
    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      requireAuthentication_ = false;
      bitField0_ = (bitField0_ & ~0x00000001);
      if (flowBuilder_ == null) {
        flow_ = java.util.Collections.emptyList();
        bitField0_ = (bitField0_ & ~0x00000002);
      } else {
        flowBuilder_.clear();
      }
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return org.yamcs.protobuf.WebSocketProto.internal_static_yamcs_protobuf_web_AuthInfo_descriptor;
    }

    @java.lang.Override
    public org.yamcs.protobuf.AuthInfo getDefaultInstanceForType() {
      return org.yamcs.protobuf.AuthInfo.getDefaultInstance();
    }

    @java.lang.Override
    public org.yamcs.protobuf.AuthInfo build() {
      org.yamcs.protobuf.AuthInfo result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public org.yamcs.protobuf.AuthInfo buildPartial() {
      org.yamcs.protobuf.AuthInfo result = new org.yamcs.protobuf.AuthInfo(this);
      int from_bitField0_ = bitField0_;
      int to_bitField0_ = 0;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.requireAuthentication_ = requireAuthentication_;
        to_bitField0_ |= 0x00000001;
      }
      if (flowBuilder_ == null) {
        if (((bitField0_ & 0x00000002) != 0)) {
          flow_ = java.util.Collections.unmodifiableList(flow_);
          bitField0_ = (bitField0_ & ~0x00000002);
        }
        result.flow_ = flow_;
      } else {
        result.flow_ = flowBuilder_.build();
      }
      result.bitField0_ = to_bitField0_;
      onBuilt();
      return result;
    }

    @java.lang.Override
    public Builder clone() {
      return super.clone();
    }
    @java.lang.Override
    public Builder setField(
        com.google.protobuf.Descriptors.FieldDescriptor field,
        java.lang.Object value) {
      return super.setField(field, value);
    }
    @java.lang.Override
    public Builder clearField(
        com.google.protobuf.Descriptors.FieldDescriptor field) {
      return super.clearField(field);
    }
    @java.lang.Override
    public Builder clearOneof(
        com.google.protobuf.Descriptors.OneofDescriptor oneof) {
      return super.clearOneof(oneof);
    }
    @java.lang.Override
    public Builder setRepeatedField(
        com.google.protobuf.Descriptors.FieldDescriptor field,
        int index, java.lang.Object value) {
      return super.setRepeatedField(field, index, value);
    }
    @java.lang.Override
    public Builder addRepeatedField(
        com.google.protobuf.Descriptors.FieldDescriptor field,
        java.lang.Object value) {
      return super.addRepeatedField(field, value);
    }
    @java.lang.Override
    public Builder mergeFrom(com.google.protobuf.Message other) {
      if (other instanceof org.yamcs.protobuf.AuthInfo) {
        return mergeFrom((org.yamcs.protobuf.AuthInfo)other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(org.yamcs.protobuf.AuthInfo other) {
      if (other == org.yamcs.protobuf.AuthInfo.getDefaultInstance()) return this;
      if (other.hasRequireAuthentication()) {
        setRequireAuthentication(other.getRequireAuthentication());
      }
      if (flowBuilder_ == null) {
        if (!other.flow_.isEmpty()) {
          if (flow_.isEmpty()) {
            flow_ = other.flow_;
            bitField0_ = (bitField0_ & ~0x00000002);
          } else {
            ensureFlowIsMutable();
            flow_.addAll(other.flow_);
          }
          onChanged();
        }
      } else {
        if (!other.flow_.isEmpty()) {
          if (flowBuilder_.isEmpty()) {
            flowBuilder_.dispose();
            flowBuilder_ = null;
            flow_ = other.flow_;
            bitField0_ = (bitField0_ & ~0x00000002);
            flowBuilder_ = 
              com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
                 getFlowFieldBuilder() : null;
          } else {
            flowBuilder_.addAllMessages(other.flow_);
          }
        }
      }
      this.mergeUnknownFields(other.unknownFields);
      onChanged();
      return this;
    }

    @java.lang.Override
    public final boolean isInitialized() {
      return true;
    }

    @java.lang.Override
    public Builder mergeFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      org.yamcs.protobuf.AuthInfo parsedMessage = null;
      try {
        parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        parsedMessage = (org.yamcs.protobuf.AuthInfo) e.getUnfinishedMessage();
        throw e.unwrapIOException();
      } finally {
        if (parsedMessage != null) {
          mergeFrom(parsedMessage);
        }
      }
      return this;
    }
    private int bitField0_;

    private boolean requireAuthentication_ ;
    /**
     * optional bool requireAuthentication = 1;
     */
    public boolean hasRequireAuthentication() {
      return ((bitField0_ & 0x00000001) != 0);
    }
    /**
     * optional bool requireAuthentication = 1;
     */
    public boolean getRequireAuthentication() {
      return requireAuthentication_;
    }
    /**
     * optional bool requireAuthentication = 1;
     */
    public Builder setRequireAuthentication(boolean value) {
      bitField0_ |= 0x00000001;
      requireAuthentication_ = value;
      onChanged();
      return this;
    }
    /**
     * optional bool requireAuthentication = 1;
     */
    public Builder clearRequireAuthentication() {
      bitField0_ = (bitField0_ & ~0x00000001);
      requireAuthentication_ = false;
      onChanged();
      return this;
    }

    private java.util.List flow_ =
      java.util.Collections.emptyList();
    private void ensureFlowIsMutable() {
      if (!((bitField0_ & 0x00000002) != 0)) {
        flow_ = new java.util.ArrayList(flow_);
        bitField0_ |= 0x00000002;
       }
    }

    private com.google.protobuf.RepeatedFieldBuilderV3<
        org.yamcs.protobuf.AuthFlow, org.yamcs.protobuf.AuthFlow.Builder, org.yamcs.protobuf.AuthFlowOrBuilder> flowBuilder_;

    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public java.util.List getFlowList() {
      if (flowBuilder_ == null) {
        return java.util.Collections.unmodifiableList(flow_);
      } else {
        return flowBuilder_.getMessageList();
      }
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public int getFlowCount() {
      if (flowBuilder_ == null) {
        return flow_.size();
      } else {
        return flowBuilder_.getCount();
      }
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public org.yamcs.protobuf.AuthFlow getFlow(int index) {
      if (flowBuilder_ == null) {
        return flow_.get(index);
      } else {
        return flowBuilder_.getMessage(index);
      }
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public Builder setFlow(
        int index, org.yamcs.protobuf.AuthFlow value) {
      if (flowBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureFlowIsMutable();
        flow_.set(index, value);
        onChanged();
      } else {
        flowBuilder_.setMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public Builder setFlow(
        int index, org.yamcs.protobuf.AuthFlow.Builder builderForValue) {
      if (flowBuilder_ == null) {
        ensureFlowIsMutable();
        flow_.set(index, builderForValue.build());
        onChanged();
      } else {
        flowBuilder_.setMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public Builder addFlow(org.yamcs.protobuf.AuthFlow value) {
      if (flowBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureFlowIsMutable();
        flow_.add(value);
        onChanged();
      } else {
        flowBuilder_.addMessage(value);
      }
      return this;
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public Builder addFlow(
        int index, org.yamcs.protobuf.AuthFlow value) {
      if (flowBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureFlowIsMutable();
        flow_.add(index, value);
        onChanged();
      } else {
        flowBuilder_.addMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public Builder addFlow(
        org.yamcs.protobuf.AuthFlow.Builder builderForValue) {
      if (flowBuilder_ == null) {
        ensureFlowIsMutable();
        flow_.add(builderForValue.build());
        onChanged();
      } else {
        flowBuilder_.addMessage(builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public Builder addFlow(
        int index, org.yamcs.protobuf.AuthFlow.Builder builderForValue) {
      if (flowBuilder_ == null) {
        ensureFlowIsMutable();
        flow_.add(index, builderForValue.build());
        onChanged();
      } else {
        flowBuilder_.addMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public Builder addAllFlow(
        java.lang.Iterable values) {
      if (flowBuilder_ == null) {
        ensureFlowIsMutable();
        com.google.protobuf.AbstractMessageLite.Builder.addAll(
            values, flow_);
        onChanged();
      } else {
        flowBuilder_.addAllMessages(values);
      }
      return this;
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public Builder clearFlow() {
      if (flowBuilder_ == null) {
        flow_ = java.util.Collections.emptyList();
        bitField0_ = (bitField0_ & ~0x00000002);
        onChanged();
      } else {
        flowBuilder_.clear();
      }
      return this;
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public Builder removeFlow(int index) {
      if (flowBuilder_ == null) {
        ensureFlowIsMutable();
        flow_.remove(index);
        onChanged();
      } else {
        flowBuilder_.remove(index);
      }
      return this;
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public org.yamcs.protobuf.AuthFlow.Builder getFlowBuilder(
        int index) {
      return getFlowFieldBuilder().getBuilder(index);
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public org.yamcs.protobuf.AuthFlowOrBuilder getFlowOrBuilder(
        int index) {
      if (flowBuilder_ == null) {
        return flow_.get(index);  } else {
        return flowBuilder_.getMessageOrBuilder(index);
      }
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public java.util.List 
         getFlowOrBuilderList() {
      if (flowBuilder_ != null) {
        return flowBuilder_.getMessageOrBuilderList();
      } else {
        return java.util.Collections.unmodifiableList(flow_);
      }
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public org.yamcs.protobuf.AuthFlow.Builder addFlowBuilder() {
      return getFlowFieldBuilder().addBuilder(
          org.yamcs.protobuf.AuthFlow.getDefaultInstance());
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public org.yamcs.protobuf.AuthFlow.Builder addFlowBuilder(
        int index) {
      return getFlowFieldBuilder().addBuilder(
          index, org.yamcs.protobuf.AuthFlow.getDefaultInstance());
    }
    /**
     * repeated .yamcs.protobuf.web.AuthFlow flow = 2;
     */
    public java.util.List 
         getFlowBuilderList() {
      return getFlowFieldBuilder().getBuilderList();
    }
    private com.google.protobuf.RepeatedFieldBuilderV3<
        org.yamcs.protobuf.AuthFlow, org.yamcs.protobuf.AuthFlow.Builder, org.yamcs.protobuf.AuthFlowOrBuilder> 
        getFlowFieldBuilder() {
      if (flowBuilder_ == null) {
        flowBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
            org.yamcs.protobuf.AuthFlow, org.yamcs.protobuf.AuthFlow.Builder, org.yamcs.protobuf.AuthFlowOrBuilder>(
                flow_,
                ((bitField0_ & 0x00000002) != 0),
                getParentForChildren(),
                isClean());
        flow_ = null;
      }
      return flowBuilder_;
    }
    @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:yamcs.protobuf.web.AuthInfo)
  }

  // @@protoc_insertion_point(class_scope:yamcs.protobuf.web.AuthInfo)
  private static final org.yamcs.protobuf.AuthInfo DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new org.yamcs.protobuf.AuthInfo();
  }

  public static org.yamcs.protobuf.AuthInfo getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  @java.lang.Deprecated public static final com.google.protobuf.Parser
      PARSER = new com.google.protobuf.AbstractParser() {
    @java.lang.Override
    public AuthInfo parsePartialFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return new AuthInfo(input, extensionRegistry);
    }
  };

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

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

  @java.lang.Override
  public org.yamcs.protobuf.AuthInfo getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy