From ba1147376591bbf7c174b87a42811e3571e8c69e Mon Sep 17 00:00:00 2001 From: Jeff Ching Date: Thu, 4 Jun 2020 17:15:46 -0700 Subject: [PATCH] fix: remove duplicate classes provided by api-common (#71) * chore: remove duplicate classes provided by api-common * chore: allow breaking change * chore: remove shutil hack as change was fixed upstream --- .../clirr-ignored-differences.xml | 25 + .../main/java/com/google/api/HttpBody.java | 1271 ----------------- .../com/google/api/HttpBodyOrBuilder.java | 119 -- .../java/com/google/api/HttpBodyProto.java | 68 - 4 files changed, 25 insertions(+), 1458 deletions(-) create mode 100644 proto-google-cloud-recommendations-ai-v1beta1/clirr-ignored-differences.xml delete mode 100644 proto-google-cloud-recommendations-ai-v1beta1/src/main/java/com/google/api/HttpBody.java delete mode 100644 proto-google-cloud-recommendations-ai-v1beta1/src/main/java/com/google/api/HttpBodyOrBuilder.java delete mode 100644 proto-google-cloud-recommendations-ai-v1beta1/src/main/java/com/google/api/HttpBodyProto.java diff --git a/proto-google-cloud-recommendations-ai-v1beta1/clirr-ignored-differences.xml b/proto-google-cloud-recommendations-ai-v1beta1/clirr-ignored-differences.xml new file mode 100644 index 00000000..db208371 --- /dev/null +++ b/proto-google-cloud-recommendations-ai-v1beta1/clirr-ignored-differences.xml @@ -0,0 +1,25 @@ + + + + + 7012 + com/google/cloud/recommendationengine/v1beta1/*OrBuilder + * get*(*) + + + 7012 + com/google/cloud/recommendationengine/v1beta1/*OrBuilder + boolean contains*(*) + + + 7012 + com/google/cloud/recommendationengine/v1beta1/*OrBuilder + boolean has*(*) + + + + + 8001 + com/google/api/HttpBody* + + diff --git a/proto-google-cloud-recommendations-ai-v1beta1/src/main/java/com/google/api/HttpBody.java b/proto-google-cloud-recommendations-ai-v1beta1/src/main/java/com/google/api/HttpBody.java deleted file mode 100644 index f479585a..00000000 --- a/proto-google-cloud-recommendations-ai-v1beta1/src/main/java/com/google/api/HttpBody.java +++ /dev/null @@ -1,1271 +0,0 @@ -/* - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: google/api/httpbody.proto - -package com.google.api; - -/** - * - * - *
- * Message that represents an arbitrary HTTP body. It should only be used for
- * payload formats that can't be represented as JSON, such as raw binary or
- * an HTML page.
- * This message can be used both in streaming and non-streaming API methods in
- * the request as well as the response.
- * It can be used as a top-level request field, which is convenient if one
- * wants to extract parameters from either the URL or HTTP template into the
- * request fields and also want access to the raw HTTP body.
- * Example:
- *     message GetResourceRequest {
- *       // A unique request id.
- *       string request_id = 1;
- *       // The raw HTTP body is bound to this field.
- *       google.api.HttpBody http_body = 2;
- *     }
- *     service ResourceService {
- *       rpc GetResource(GetResourceRequest) returns (google.api.HttpBody);
- *       rpc UpdateResource(google.api.HttpBody) returns
- *       (google.protobuf.Empty);
- *     }
- * Example with streaming methods:
- *     service CaldavService {
- *       rpc GetCalendar(stream google.api.HttpBody)
- *         returns (stream google.api.HttpBody);
- *       rpc UpdateCalendar(stream google.api.HttpBody)
- *         returns (stream google.api.HttpBody);
- *     }
- * Use of this type only changes how the request and response bodies are
- * handled, all other features will continue to work unchanged.
- * 
- * - * Protobuf type {@code google.api.HttpBody} - */ -public final class HttpBody extends com.google.protobuf.GeneratedMessageV3 - implements - // @@protoc_insertion_point(message_implements:google.api.HttpBody) - HttpBodyOrBuilder { - private static final long serialVersionUID = 0L; - // Use HttpBody.newBuilder() to construct. - private HttpBody(com.google.protobuf.GeneratedMessageV3.Builder builder) { - super(builder); - } - - private HttpBody() { - contentType_ = ""; - data_ = com.google.protobuf.ByteString.EMPTY; - extensions_ = java.util.Collections.emptyList(); - } - - @java.lang.Override - @SuppressWarnings({"unused"}) - protected java.lang.Object newInstance(UnusedPrivateParameter unused) { - return new HttpBody(); - } - - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet getUnknownFields() { - return this.unknownFields; - } - - private HttpBody( - 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 10: - { - java.lang.String s = input.readStringRequireUtf8(); - - contentType_ = s; - break; - } - case 18: - { - data_ = input.readBytes(); - break; - } - case 26: - { - if (!((mutable_bitField0_ & 0x00000001) != 0)) { - extensions_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - extensions_.add( - input.readMessage(com.google.protobuf.Any.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_ & 0x00000001) != 0)) { - extensions_ = java.util.Collections.unmodifiableList(extensions_); - } - this.unknownFields = unknownFields.build(); - makeExtensionsImmutable(); - } - } - - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.api.HttpBodyProto.internal_static_google_api_HttpBody_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.google.api.HttpBodyProto.internal_static_google_api_HttpBody_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.google.api.HttpBody.class, com.google.api.HttpBody.Builder.class); - } - - public static final int CONTENT_TYPE_FIELD_NUMBER = 1; - private volatile java.lang.Object contentType_; - /** - * - * - *
-   * The HTTP Content-Type header value specifying the content type of the body.
-   * 
- * - * string content_type = 1; - * - * @return The contentType. - */ - public java.lang.String getContentType() { - java.lang.Object ref = contentType_; - 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(); - contentType_ = s; - return s; - } - } - /** - * - * - *
-   * The HTTP Content-Type header value specifying the content type of the body.
-   * 
- * - * string content_type = 1; - * - * @return The bytes for contentType. - */ - public com.google.protobuf.ByteString getContentTypeBytes() { - java.lang.Object ref = contentType_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); - contentType_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - public static final int DATA_FIELD_NUMBER = 2; - private com.google.protobuf.ByteString data_; - /** - * - * - *
-   * The HTTP request/response body as raw binary.
-   * 
- * - * bytes data = 2; - * - * @return The data. - */ - public com.google.protobuf.ByteString getData() { - return data_; - } - - public static final int EXTENSIONS_FIELD_NUMBER = 3; - private java.util.List extensions_; - /** - * - * - *
-   * Application specific response metadata. Must be set in the first response
-   * for streaming APIs.
-   * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public java.util.List getExtensionsList() { - return extensions_; - } - /** - * - * - *
-   * Application specific response metadata. Must be set in the first response
-   * for streaming APIs.
-   * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public java.util.List getExtensionsOrBuilderList() { - return extensions_; - } - /** - * - * - *
-   * Application specific response metadata. Must be set in the first response
-   * for streaming APIs.
-   * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public int getExtensionsCount() { - return extensions_.size(); - } - /** - * - * - *
-   * Application specific response metadata. Must be set in the first response
-   * for streaming APIs.
-   * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public com.google.protobuf.Any getExtensions(int index) { - return extensions_.get(index); - } - /** - * - * - *
-   * Application specific response metadata. Must be set in the first response
-   * for streaming APIs.
-   * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public com.google.protobuf.AnyOrBuilder getExtensionsOrBuilder(int index) { - return extensions_.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 (!getContentTypeBytes().isEmpty()) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 1, contentType_); - } - if (!data_.isEmpty()) { - output.writeBytes(2, data_); - } - for (int i = 0; i < extensions_.size(); i++) { - output.writeMessage(3, extensions_.get(i)); - } - unknownFields.writeTo(output); - } - - @java.lang.Override - public int getSerializedSize() { - int size = memoizedSize; - if (size != -1) return size; - - size = 0; - if (!getContentTypeBytes().isEmpty()) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, contentType_); - } - if (!data_.isEmpty()) { - size += com.google.protobuf.CodedOutputStream.computeBytesSize(2, data_); - } - for (int i = 0; i < extensions_.size(); i++) { - size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, extensions_.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 com.google.api.HttpBody)) { - return super.equals(obj); - } - com.google.api.HttpBody other = (com.google.api.HttpBody) obj; - - if (!getContentType().equals(other.getContentType())) return false; - if (!getData().equals(other.getData())) return false; - if (!getExtensionsList().equals(other.getExtensionsList())) 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(); - hash = (37 * hash) + CONTENT_TYPE_FIELD_NUMBER; - hash = (53 * hash) + getContentType().hashCode(); - hash = (37 * hash) + DATA_FIELD_NUMBER; - hash = (53 * hash) + getData().hashCode(); - if (getExtensionsCount() > 0) { - hash = (37 * hash) + EXTENSIONS_FIELD_NUMBER; - hash = (53 * hash) + getExtensionsList().hashCode(); - } - hash = (29 * hash) + unknownFields.hashCode(); - memoizedHashCode = hash; - return hash; - } - - public static com.google.api.HttpBody parseFrom(java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - - public static com.google.api.HttpBody parseFrom( - java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - - public static com.google.api.HttpBody parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - - public static com.google.api.HttpBody parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - - public static com.google.api.HttpBody parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - - public static com.google.api.HttpBody parseFrom( - byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - - public static com.google.api.HttpBody parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); - } - - public static com.google.api.HttpBody 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.google.api.HttpBody parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); - } - - public static com.google.api.HttpBody 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.google.api.HttpBody parseFrom(com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); - } - - public static com.google.api.HttpBody 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.google.api.HttpBody 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; - } - /** - * - * - *
-   * Message that represents an arbitrary HTTP body. It should only be used for
-   * payload formats that can't be represented as JSON, such as raw binary or
-   * an HTML page.
-   * This message can be used both in streaming and non-streaming API methods in
-   * the request as well as the response.
-   * It can be used as a top-level request field, which is convenient if one
-   * wants to extract parameters from either the URL or HTTP template into the
-   * request fields and also want access to the raw HTTP body.
-   * Example:
-   *     message GetResourceRequest {
-   *       // A unique request id.
-   *       string request_id = 1;
-   *       // The raw HTTP body is bound to this field.
-   *       google.api.HttpBody http_body = 2;
-   *     }
-   *     service ResourceService {
-   *       rpc GetResource(GetResourceRequest) returns (google.api.HttpBody);
-   *       rpc UpdateResource(google.api.HttpBody) returns
-   *       (google.protobuf.Empty);
-   *     }
-   * Example with streaming methods:
-   *     service CaldavService {
-   *       rpc GetCalendar(stream google.api.HttpBody)
-   *         returns (stream google.api.HttpBody);
-   *       rpc UpdateCalendar(stream google.api.HttpBody)
-   *         returns (stream google.api.HttpBody);
-   *     }
-   * Use of this type only changes how the request and response bodies are
-   * handled, all other features will continue to work unchanged.
-   * 
- * - * Protobuf type {@code google.api.HttpBody} - */ - public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder - implements - // @@protoc_insertion_point(builder_implements:google.api.HttpBody) - com.google.api.HttpBodyOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.google.api.HttpBodyProto.internal_static_google_api_HttpBody_descriptor; - } - - @java.lang.Override - protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.google.api.HttpBodyProto.internal_static_google_api_HttpBody_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.google.api.HttpBody.class, com.google.api.HttpBody.Builder.class); - } - - // Construct using com.google.api.HttpBody.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { - getExtensionsFieldBuilder(); - } - } - - @java.lang.Override - public Builder clear() { - super.clear(); - contentType_ = ""; - - data_ = com.google.protobuf.ByteString.EMPTY; - - if (extensionsBuilder_ == null) { - extensions_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - } else { - extensionsBuilder_.clear(); - } - return this; - } - - @java.lang.Override - public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return com.google.api.HttpBodyProto.internal_static_google_api_HttpBody_descriptor; - } - - @java.lang.Override - public com.google.api.HttpBody getDefaultInstanceForType() { - return com.google.api.HttpBody.getDefaultInstance(); - } - - @java.lang.Override - public com.google.api.HttpBody build() { - com.google.api.HttpBody result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - @java.lang.Override - public com.google.api.HttpBody buildPartial() { - com.google.api.HttpBody result = new com.google.api.HttpBody(this); - int from_bitField0_ = bitField0_; - result.contentType_ = contentType_; - result.data_ = data_; - if (extensionsBuilder_ == null) { - if (((bitField0_ & 0x00000001) != 0)) { - extensions_ = java.util.Collections.unmodifiableList(extensions_); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.extensions_ = extensions_; - } else { - result.extensions_ = extensionsBuilder_.build(); - } - 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 com.google.api.HttpBody) { - return mergeFrom((com.google.api.HttpBody) other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.google.api.HttpBody other) { - if (other == com.google.api.HttpBody.getDefaultInstance()) return this; - if (!other.getContentType().isEmpty()) { - contentType_ = other.contentType_; - onChanged(); - } - if (other.getData() != com.google.protobuf.ByteString.EMPTY) { - setData(other.getData()); - } - if (extensionsBuilder_ == null) { - if (!other.extensions_.isEmpty()) { - if (extensions_.isEmpty()) { - extensions_ = other.extensions_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureExtensionsIsMutable(); - extensions_.addAll(other.extensions_); - } - onChanged(); - } - } else { - if (!other.extensions_.isEmpty()) { - if (extensionsBuilder_.isEmpty()) { - extensionsBuilder_.dispose(); - extensionsBuilder_ = null; - extensions_ = other.extensions_; - bitField0_ = (bitField0_ & ~0x00000001); - extensionsBuilder_ = - com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders - ? getExtensionsFieldBuilder() - : null; - } else { - extensionsBuilder_.addAllMessages(other.extensions_); - } - } - } - 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 { - com.google.api.HttpBody parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.google.api.HttpBody) e.getUnfinishedMessage(); - throw e.unwrapIOException(); - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - - private int bitField0_; - - private java.lang.Object contentType_ = ""; - /** - * - * - *
-     * The HTTP Content-Type header value specifying the content type of the body.
-     * 
- * - * string content_type = 1; - * - * @return The contentType. - */ - public java.lang.String getContentType() { - java.lang.Object ref = contentType_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - contentType_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * - * - *
-     * The HTTP Content-Type header value specifying the content type of the body.
-     * 
- * - * string content_type = 1; - * - * @return The bytes for contentType. - */ - public com.google.protobuf.ByteString getContentTypeBytes() { - java.lang.Object ref = contentType_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); - contentType_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * - * - *
-     * The HTTP Content-Type header value specifying the content type of the body.
-     * 
- * - * string content_type = 1; - * - * @param value The contentType to set. - * @return This builder for chaining. - */ - public Builder setContentType(java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - contentType_ = value; - onChanged(); - return this; - } - /** - * - * - *
-     * The HTTP Content-Type header value specifying the content type of the body.
-     * 
- * - * string content_type = 1; - * - * @return This builder for chaining. - */ - public Builder clearContentType() { - - contentType_ = getDefaultInstance().getContentType(); - onChanged(); - return this; - } - /** - * - * - *
-     * The HTTP Content-Type header value specifying the content type of the body.
-     * 
- * - * string content_type = 1; - * - * @param value The bytes for contentType to set. - * @return This builder for chaining. - */ - public Builder setContentTypeBytes(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); - - contentType_ = value; - onChanged(); - return this; - } - - private com.google.protobuf.ByteString data_ = com.google.protobuf.ByteString.EMPTY; - /** - * - * - *
-     * The HTTP request/response body as raw binary.
-     * 
- * - * bytes data = 2; - * - * @return The data. - */ - public com.google.protobuf.ByteString getData() { - return data_; - } - /** - * - * - *
-     * The HTTP request/response body as raw binary.
-     * 
- * - * bytes data = 2; - * - * @param value The data to set. - * @return This builder for chaining. - */ - public Builder setData(com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - - data_ = value; - onChanged(); - return this; - } - /** - * - * - *
-     * The HTTP request/response body as raw binary.
-     * 
- * - * bytes data = 2; - * - * @return This builder for chaining. - */ - public Builder clearData() { - - data_ = getDefaultInstance().getData(); - onChanged(); - return this; - } - - private java.util.List extensions_ = java.util.Collections.emptyList(); - - private void ensureExtensionsIsMutable() { - if (!((bitField0_ & 0x00000001) != 0)) { - extensions_ = new java.util.ArrayList(extensions_); - bitField0_ |= 0x00000001; - } - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - com.google.protobuf.Any, - com.google.protobuf.Any.Builder, - com.google.protobuf.AnyOrBuilder> - extensionsBuilder_; - - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public java.util.List getExtensionsList() { - if (extensionsBuilder_ == null) { - return java.util.Collections.unmodifiableList(extensions_); - } else { - return extensionsBuilder_.getMessageList(); - } - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public int getExtensionsCount() { - if (extensionsBuilder_ == null) { - return extensions_.size(); - } else { - return extensionsBuilder_.getCount(); - } - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public com.google.protobuf.Any getExtensions(int index) { - if (extensionsBuilder_ == null) { - return extensions_.get(index); - } else { - return extensionsBuilder_.getMessage(index); - } - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public Builder setExtensions(int index, com.google.protobuf.Any value) { - if (extensionsBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureExtensionsIsMutable(); - extensions_.set(index, value); - onChanged(); - } else { - extensionsBuilder_.setMessage(index, value); - } - return this; - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public Builder setExtensions(int index, com.google.protobuf.Any.Builder builderForValue) { - if (extensionsBuilder_ == null) { - ensureExtensionsIsMutable(); - extensions_.set(index, builderForValue.build()); - onChanged(); - } else { - extensionsBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public Builder addExtensions(com.google.protobuf.Any value) { - if (extensionsBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureExtensionsIsMutable(); - extensions_.add(value); - onChanged(); - } else { - extensionsBuilder_.addMessage(value); - } - return this; - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public Builder addExtensions(int index, com.google.protobuf.Any value) { - if (extensionsBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureExtensionsIsMutable(); - extensions_.add(index, value); - onChanged(); - } else { - extensionsBuilder_.addMessage(index, value); - } - return this; - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public Builder addExtensions(com.google.protobuf.Any.Builder builderForValue) { - if (extensionsBuilder_ == null) { - ensureExtensionsIsMutable(); - extensions_.add(builderForValue.build()); - onChanged(); - } else { - extensionsBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public Builder addExtensions(int index, com.google.protobuf.Any.Builder builderForValue) { - if (extensionsBuilder_ == null) { - ensureExtensionsIsMutable(); - extensions_.add(index, builderForValue.build()); - onChanged(); - } else { - extensionsBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public Builder addAllExtensions(java.lang.Iterable values) { - if (extensionsBuilder_ == null) { - ensureExtensionsIsMutable(); - com.google.protobuf.AbstractMessageLite.Builder.addAll(values, extensions_); - onChanged(); - } else { - extensionsBuilder_.addAllMessages(values); - } - return this; - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public Builder clearExtensions() { - if (extensionsBuilder_ == null) { - extensions_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - } else { - extensionsBuilder_.clear(); - } - return this; - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public Builder removeExtensions(int index) { - if (extensionsBuilder_ == null) { - ensureExtensionsIsMutable(); - extensions_.remove(index); - onChanged(); - } else { - extensionsBuilder_.remove(index); - } - return this; - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public com.google.protobuf.Any.Builder getExtensionsBuilder(int index) { - return getExtensionsFieldBuilder().getBuilder(index); - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public com.google.protobuf.AnyOrBuilder getExtensionsOrBuilder(int index) { - if (extensionsBuilder_ == null) { - return extensions_.get(index); - } else { - return extensionsBuilder_.getMessageOrBuilder(index); - } - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public java.util.List getExtensionsOrBuilderList() { - if (extensionsBuilder_ != null) { - return extensionsBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(extensions_); - } - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public com.google.protobuf.Any.Builder addExtensionsBuilder() { - return getExtensionsFieldBuilder().addBuilder(com.google.protobuf.Any.getDefaultInstance()); - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public com.google.protobuf.Any.Builder addExtensionsBuilder(int index) { - return getExtensionsFieldBuilder() - .addBuilder(index, com.google.protobuf.Any.getDefaultInstance()); - } - /** - * - * - *
-     * Application specific response metadata. Must be set in the first response
-     * for streaming APIs.
-     * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - public java.util.List getExtensionsBuilderList() { - return getExtensionsFieldBuilder().getBuilderList(); - } - - private com.google.protobuf.RepeatedFieldBuilderV3< - com.google.protobuf.Any, - com.google.protobuf.Any.Builder, - com.google.protobuf.AnyOrBuilder> - getExtensionsFieldBuilder() { - if (extensionsBuilder_ == null) { - extensionsBuilder_ = - new com.google.protobuf.RepeatedFieldBuilderV3< - com.google.protobuf.Any, - com.google.protobuf.Any.Builder, - com.google.protobuf.AnyOrBuilder>( - extensions_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean()); - extensions_ = null; - } - return extensionsBuilder_; - } - - @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:google.api.HttpBody) - } - - // @@protoc_insertion_point(class_scope:google.api.HttpBody) - private static final com.google.api.HttpBody DEFAULT_INSTANCE; - - static { - DEFAULT_INSTANCE = new com.google.api.HttpBody(); - } - - public static com.google.api.HttpBody getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static final com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - @java.lang.Override - public HttpBody parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new HttpBody(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 com.google.api.HttpBody getDefaultInstanceForType() { - return DEFAULT_INSTANCE; - } -} diff --git a/proto-google-cloud-recommendations-ai-v1beta1/src/main/java/com/google/api/HttpBodyOrBuilder.java b/proto-google-cloud-recommendations-ai-v1beta1/src/main/java/com/google/api/HttpBodyOrBuilder.java deleted file mode 100644 index c1749af4..00000000 --- a/proto-google-cloud-recommendations-ai-v1beta1/src/main/java/com/google/api/HttpBodyOrBuilder.java +++ /dev/null @@ -1,119 +0,0 @@ -/* - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: google/api/httpbody.proto - -package com.google.api; - -public interface HttpBodyOrBuilder - extends - // @@protoc_insertion_point(interface_extends:google.api.HttpBody) - com.google.protobuf.MessageOrBuilder { - - /** - * - * - *
-   * The HTTP Content-Type header value specifying the content type of the body.
-   * 
- * - * string content_type = 1; - * - * @return The contentType. - */ - java.lang.String getContentType(); - /** - * - * - *
-   * The HTTP Content-Type header value specifying the content type of the body.
-   * 
- * - * string content_type = 1; - * - * @return The bytes for contentType. - */ - com.google.protobuf.ByteString getContentTypeBytes(); - - /** - * - * - *
-   * The HTTP request/response body as raw binary.
-   * 
- * - * bytes data = 2; - * - * @return The data. - */ - com.google.protobuf.ByteString getData(); - - /** - * - * - *
-   * Application specific response metadata. Must be set in the first response
-   * for streaming APIs.
-   * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - java.util.List getExtensionsList(); - /** - * - * - *
-   * Application specific response metadata. Must be set in the first response
-   * for streaming APIs.
-   * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - com.google.protobuf.Any getExtensions(int index); - /** - * - * - *
-   * Application specific response metadata. Must be set in the first response
-   * for streaming APIs.
-   * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - int getExtensionsCount(); - /** - * - * - *
-   * Application specific response metadata. Must be set in the first response
-   * for streaming APIs.
-   * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - java.util.List getExtensionsOrBuilderList(); - /** - * - * - *
-   * Application specific response metadata. Must be set in the first response
-   * for streaming APIs.
-   * 
- * - * repeated .google.protobuf.Any extensions = 3; - */ - com.google.protobuf.AnyOrBuilder getExtensionsOrBuilder(int index); -} diff --git a/proto-google-cloud-recommendations-ai-v1beta1/src/main/java/com/google/api/HttpBodyProto.java b/proto-google-cloud-recommendations-ai-v1beta1/src/main/java/com/google/api/HttpBodyProto.java deleted file mode 100644 index b136b692..00000000 --- a/proto-google-cloud-recommendations-ai-v1beta1/src/main/java/com/google/api/HttpBodyProto.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: google/api/httpbody.proto - -package com.google.api; - -public final class HttpBodyProto { - private HttpBodyProto() {} - - public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} - - public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { - registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); - } - - static final com.google.protobuf.Descriptors.Descriptor - internal_static_google_api_HttpBody_descriptor; - static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable - internal_static_google_api_HttpBody_fieldAccessorTable; - - public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { - return descriptor; - } - - private static com.google.protobuf.Descriptors.FileDescriptor descriptor; - - static { - java.lang.String[] descriptorData = { - "\n\031google/api/httpbody.proto\022\ngoogle.api\032" - + "\031google/protobuf/any.proto\"X\n\010HttpBody\022\024" - + "\n\014content_type\030\001 \001(\t\022\014\n\004data\030\002 \001(\014\022(\n\nex" - + "tensions\030\003 \003(\0132\024.google.protobuf.AnyBh\n\016" - + "com.google.apiB\rHttpBodyProtoP\001Z;google." - + "golang.org/genproto/googleapis/api/httpb" - + "ody;httpbody\370\001\001\242\002\004GAPIb\006proto3" - }; - descriptor = - com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( - descriptorData, - new com.google.protobuf.Descriptors.FileDescriptor[] { - com.google.protobuf.AnyProto.getDescriptor(), - }); - internal_static_google_api_HttpBody_descriptor = getDescriptor().getMessageTypes().get(0); - internal_static_google_api_HttpBody_fieldAccessorTable = - new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( - internal_static_google_api_HttpBody_descriptor, - new java.lang.String[] { - "ContentType", "Data", "Extensions", - }); - com.google.protobuf.AnyProto.getDescriptor(); - } - - // @@protoc_insertion_point(outer_class_scope) -}