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

grpc.webhook._PutWebhookRequest Maven / Gradle / Ivy

There is a newer version: 0.119.4
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: webhook.proto

package grpc.webhook;

/**
 * Protobuf type {@code webhook._PutWebhookRequest}
 */
public final class _PutWebhookRequest extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:webhook._PutWebhookRequest)
    _PutWebhookRequestOrBuilder {
private static final long serialVersionUID = 0L;
  // Use _PutWebhookRequest.newBuilder() to construct.
  private _PutWebhookRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private _PutWebhookRequest() {
  }

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

  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return grpc.webhook.WebhookOuterClass.internal_static_webhook__PutWebhookRequest_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return grpc.webhook.WebhookOuterClass.internal_static_webhook__PutWebhookRequest_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            grpc.webhook._PutWebhookRequest.class, grpc.webhook._PutWebhookRequest.Builder.class);
  }

  private int bitField0_;
  public static final int WEBHOOK_FIELD_NUMBER = 1;
  private grpc.webhook._Webhook webhook_;
  /**
   * .webhook._Webhook webhook = 1;
   * @return Whether the webhook field is set.
   */
  @java.lang.Override
  public boolean hasWebhook() {
    return ((bitField0_ & 0x00000001) != 0);
  }
  /**
   * .webhook._Webhook webhook = 1;
   * @return The webhook.
   */
  @java.lang.Override
  public grpc.webhook._Webhook getWebhook() {
    return webhook_ == null ? grpc.webhook._Webhook.getDefaultInstance() : webhook_;
  }
  /**
   * .webhook._Webhook webhook = 1;
   */
  @java.lang.Override
  public grpc.webhook._WebhookOrBuilder getWebhookOrBuilder() {
    return webhook_ == null ? grpc.webhook._Webhook.getDefaultInstance() : webhook_;
  }

  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.writeMessage(1, getWebhook());
    }
    getUnknownFields().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
        .computeMessageSize(1, getWebhook());
    }
    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 grpc.webhook._PutWebhookRequest)) {
      return super.equals(obj);
    }
    grpc.webhook._PutWebhookRequest other = (grpc.webhook._PutWebhookRequest) obj;

    if (hasWebhook() != other.hasWebhook()) return false;
    if (hasWebhook()) {
      if (!getWebhook()
          .equals(other.getWebhook())) 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 (hasWebhook()) {
      hash = (37 * hash) + WEBHOOK_FIELD_NUMBER;
      hash = (53 * hash) + getWebhook().hashCode();
    }
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static grpc.webhook._PutWebhookRequest parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static grpc.webhook._PutWebhookRequest parseFrom(
      java.nio.ByteBuffer data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static grpc.webhook._PutWebhookRequest parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static grpc.webhook._PutWebhookRequest parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static grpc.webhook._PutWebhookRequest parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static grpc.webhook._PutWebhookRequest parseFrom(
      byte[] data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static grpc.webhook._PutWebhookRequest parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static grpc.webhook._PutWebhookRequest 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 grpc.webhook._PutWebhookRequest parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input);
  }

  public static grpc.webhook._PutWebhookRequest 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 grpc.webhook._PutWebhookRequest parseFrom(
      com.google.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static grpc.webhook._PutWebhookRequest 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(grpc.webhook._PutWebhookRequest 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 webhook._PutWebhookRequest}
   */
  public static final class Builder extends
      com.google.protobuf.GeneratedMessageV3.Builder implements
      // @@protoc_insertion_point(builder_implements:webhook._PutWebhookRequest)
      grpc.webhook._PutWebhookRequestOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return grpc.webhook.WebhookOuterClass.internal_static_webhook__PutWebhookRequest_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return grpc.webhook.WebhookOuterClass.internal_static_webhook__PutWebhookRequest_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              grpc.webhook._PutWebhookRequest.class, grpc.webhook._PutWebhookRequest.Builder.class);
    }

    // Construct using grpc.webhook._PutWebhookRequest.newBuilder()
    private Builder() {
      maybeForceBuilderInitialization();
    }

    private Builder(
        com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);
      maybeForceBuilderInitialization();
    }
    private void maybeForceBuilderInitialization() {
      if (com.google.protobuf.GeneratedMessageV3
              .alwaysUseFieldBuilders) {
        getWebhookFieldBuilder();
      }
    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      webhook_ = null;
      if (webhookBuilder_ != null) {
        webhookBuilder_.dispose();
        webhookBuilder_ = null;
      }
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return grpc.webhook.WebhookOuterClass.internal_static_webhook__PutWebhookRequest_descriptor;
    }

    @java.lang.Override
    public grpc.webhook._PutWebhookRequest getDefaultInstanceForType() {
      return grpc.webhook._PutWebhookRequest.getDefaultInstance();
    }

    @java.lang.Override
    public grpc.webhook._PutWebhookRequest build() {
      grpc.webhook._PutWebhookRequest result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public grpc.webhook._PutWebhookRequest buildPartial() {
      grpc.webhook._PutWebhookRequest result = new grpc.webhook._PutWebhookRequest(this);
      if (bitField0_ != 0) { buildPartial0(result); }
      onBuilt();
      return result;
    }

    private void buildPartial0(grpc.webhook._PutWebhookRequest result) {
      int from_bitField0_ = bitField0_;
      int to_bitField0_ = 0;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.webhook_ = webhookBuilder_ == null
            ? webhook_
            : webhookBuilder_.build();
        to_bitField0_ |= 0x00000001;
      }
      result.bitField0_ |= to_bitField0_;
    }

    @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 grpc.webhook._PutWebhookRequest) {
        return mergeFrom((grpc.webhook._PutWebhookRequest)other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(grpc.webhook._PutWebhookRequest other) {
      if (other == grpc.webhook._PutWebhookRequest.getDefaultInstance()) return this;
      if (other.hasWebhook()) {
        mergeWebhook(other.getWebhook());
      }
      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: {
              input.readMessage(
                  getWebhookFieldBuilder().getBuilder(),
                  extensionRegistry);
              bitField0_ |= 0x00000001;
              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 grpc.webhook._Webhook webhook_;
    private com.google.protobuf.SingleFieldBuilderV3<
        grpc.webhook._Webhook, grpc.webhook._Webhook.Builder, grpc.webhook._WebhookOrBuilder> webhookBuilder_;
    /**
     * .webhook._Webhook webhook = 1;
     * @return Whether the webhook field is set.
     */
    public boolean hasWebhook() {
      return ((bitField0_ & 0x00000001) != 0);
    }
    /**
     * .webhook._Webhook webhook = 1;
     * @return The webhook.
     */
    public grpc.webhook._Webhook getWebhook() {
      if (webhookBuilder_ == null) {
        return webhook_ == null ? grpc.webhook._Webhook.getDefaultInstance() : webhook_;
      } else {
        return webhookBuilder_.getMessage();
      }
    }
    /**
     * .webhook._Webhook webhook = 1;
     */
    public Builder setWebhook(grpc.webhook._Webhook value) {
      if (webhookBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        webhook_ = value;
      } else {
        webhookBuilder_.setMessage(value);
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * .webhook._Webhook webhook = 1;
     */
    public Builder setWebhook(
        grpc.webhook._Webhook.Builder builderForValue) {
      if (webhookBuilder_ == null) {
        webhook_ = builderForValue.build();
      } else {
        webhookBuilder_.setMessage(builderForValue.build());
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * .webhook._Webhook webhook = 1;
     */
    public Builder mergeWebhook(grpc.webhook._Webhook value) {
      if (webhookBuilder_ == null) {
        if (((bitField0_ & 0x00000001) != 0) &&
          webhook_ != null &&
          webhook_ != grpc.webhook._Webhook.getDefaultInstance()) {
          getWebhookBuilder().mergeFrom(value);
        } else {
          webhook_ = value;
        }
      } else {
        webhookBuilder_.mergeFrom(value);
      }
      if (webhook_ != null) {
        bitField0_ |= 0x00000001;
        onChanged();
      }
      return this;
    }
    /**
     * .webhook._Webhook webhook = 1;
     */
    public Builder clearWebhook() {
      bitField0_ = (bitField0_ & ~0x00000001);
      webhook_ = null;
      if (webhookBuilder_ != null) {
        webhookBuilder_.dispose();
        webhookBuilder_ = null;
      }
      onChanged();
      return this;
    }
    /**
     * .webhook._Webhook webhook = 1;
     */
    public grpc.webhook._Webhook.Builder getWebhookBuilder() {
      bitField0_ |= 0x00000001;
      onChanged();
      return getWebhookFieldBuilder().getBuilder();
    }
    /**
     * .webhook._Webhook webhook = 1;
     */
    public grpc.webhook._WebhookOrBuilder getWebhookOrBuilder() {
      if (webhookBuilder_ != null) {
        return webhookBuilder_.getMessageOrBuilder();
      } else {
        return webhook_ == null ?
            grpc.webhook._Webhook.getDefaultInstance() : webhook_;
      }
    }
    /**
     * .webhook._Webhook webhook = 1;
     */
    private com.google.protobuf.SingleFieldBuilderV3<
        grpc.webhook._Webhook, grpc.webhook._Webhook.Builder, grpc.webhook._WebhookOrBuilder> 
        getWebhookFieldBuilder() {
      if (webhookBuilder_ == null) {
        webhookBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
            grpc.webhook._Webhook, grpc.webhook._Webhook.Builder, grpc.webhook._WebhookOrBuilder>(
                getWebhook(),
                getParentForChildren(),
                isClean());
        webhook_ = null;
      }
      return webhookBuilder_;
    }
    @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:webhook._PutWebhookRequest)
  }

  // @@protoc_insertion_point(class_scope:webhook._PutWebhookRequest)
  private static final grpc.webhook._PutWebhookRequest DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new grpc.webhook._PutWebhookRequest();
  }

  public static grpc.webhook._PutWebhookRequest getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

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

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

  @java.lang.Override
  public grpc.webhook._PutWebhookRequest getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy