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

com.google.cloud.retail.v2beta.SetDefaultBranchRequest Maven / Gradle / Ivy

There is a newer version: 2.51.0
Show newest version
/*
 * Copyright 2024 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/cloud/retail/v2beta/catalog_service.proto

// Protobuf Java Version: 3.25.3
package com.google.cloud.retail.v2beta;

/**
 *
 *
 * 
 * Request message to set a specified branch as new default_branch.
 * 
* * Protobuf type {@code google.cloud.retail.v2beta.SetDefaultBranchRequest} */ public final class SetDefaultBranchRequest extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.retail.v2beta.SetDefaultBranchRequest) SetDefaultBranchRequestOrBuilder { private static final long serialVersionUID = 0L; // Use SetDefaultBranchRequest.newBuilder() to construct. private SetDefaultBranchRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private SetDefaultBranchRequest() { catalog_ = ""; branchId_ = ""; note_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new SetDefaultBranchRequest(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.retail.v2beta.CatalogServiceProto .internal_static_google_cloud_retail_v2beta_SetDefaultBranchRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.retail.v2beta.CatalogServiceProto .internal_static_google_cloud_retail_v2beta_SetDefaultBranchRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.retail.v2beta.SetDefaultBranchRequest.class, com.google.cloud.retail.v2beta.SetDefaultBranchRequest.Builder.class); } public static final int CATALOG_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object catalog_ = ""; /** * * *
   * Full resource name of the catalog, such as
   * `projects/*/locations/global/catalogs/default_catalog`.
   * 
* * string catalog = 1 [(.google.api.resource_reference) = { ... } * * @return The catalog. */ @java.lang.Override public java.lang.String getCatalog() { java.lang.Object ref = catalog_; 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(); catalog_ = s; return s; } } /** * * *
   * Full resource name of the catalog, such as
   * `projects/*/locations/global/catalogs/default_catalog`.
   * 
* * string catalog = 1 [(.google.api.resource_reference) = { ... } * * @return The bytes for catalog. */ @java.lang.Override public com.google.protobuf.ByteString getCatalogBytes() { java.lang.Object ref = catalog_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); catalog_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int BRANCH_ID_FIELD_NUMBER = 2; @SuppressWarnings("serial") private volatile java.lang.Object branchId_ = ""; /** * * *
   * The final component of the resource name of a branch.
   *
   * This field must be one of "0", "1" or "2". Otherwise, an INVALID_ARGUMENT
   * error is returned.
   *
   * If there are no sufficient active products in the targeted branch and
   * [force][google.cloud.retail.v2beta.SetDefaultBranchRequest.force] is not
   * set, a FAILED_PRECONDITION error is returned.
   * 
* * string branch_id = 2 [(.google.api.resource_reference) = { ... } * * @return The branchId. */ @java.lang.Override public java.lang.String getBranchId() { java.lang.Object ref = branchId_; 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(); branchId_ = s; return s; } } /** * * *
   * The final component of the resource name of a branch.
   *
   * This field must be one of "0", "1" or "2". Otherwise, an INVALID_ARGUMENT
   * error is returned.
   *
   * If there are no sufficient active products in the targeted branch and
   * [force][google.cloud.retail.v2beta.SetDefaultBranchRequest.force] is not
   * set, a FAILED_PRECONDITION error is returned.
   * 
* * string branch_id = 2 [(.google.api.resource_reference) = { ... } * * @return The bytes for branchId. */ @java.lang.Override public com.google.protobuf.ByteString getBranchIdBytes() { java.lang.Object ref = branchId_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); branchId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int NOTE_FIELD_NUMBER = 3; @SuppressWarnings("serial") private volatile java.lang.Object note_ = ""; /** * * *
   * Some note on this request, this can be retrieved by
   * [CatalogService.GetDefaultBranch][google.cloud.retail.v2beta.CatalogService.GetDefaultBranch]
   * before next valid default branch set occurs.
   *
   * This field must be a UTF-8 encoded string with a length limit of 1,000
   * characters. Otherwise, an INVALID_ARGUMENT error is returned.
   * 
* * string note = 3; * * @return The note. */ @java.lang.Override public java.lang.String getNote() { java.lang.Object ref = note_; 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(); note_ = s; return s; } } /** * * *
   * Some note on this request, this can be retrieved by
   * [CatalogService.GetDefaultBranch][google.cloud.retail.v2beta.CatalogService.GetDefaultBranch]
   * before next valid default branch set occurs.
   *
   * This field must be a UTF-8 encoded string with a length limit of 1,000
   * characters. Otherwise, an INVALID_ARGUMENT error is returned.
   * 
* * string note = 3; * * @return The bytes for note. */ @java.lang.Override public com.google.protobuf.ByteString getNoteBytes() { java.lang.Object ref = note_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); note_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int FORCE_FIELD_NUMBER = 4; private boolean force_ = false; /** * * *
   * If set to true, it permits switching to a branch with
   * [branch_id][google.cloud.retail.v2beta.SetDefaultBranchRequest.branch_id]
   * even if it has no sufficient active products.
   * 
* * bool force = 4; * * @return The force. */ @java.lang.Override public boolean getForce() { return force_; } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(catalog_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, catalog_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(branchId_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, branchId_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(note_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, note_); } if (force_ != false) { output.writeBool(4, force_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(catalog_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, catalog_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(branchId_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, branchId_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(note_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, note_); } if (force_ != false) { size += com.google.protobuf.CodedOutputStream.computeBoolSize(4, force_); } 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.google.cloud.retail.v2beta.SetDefaultBranchRequest)) { return super.equals(obj); } com.google.cloud.retail.v2beta.SetDefaultBranchRequest other = (com.google.cloud.retail.v2beta.SetDefaultBranchRequest) obj; if (!getCatalog().equals(other.getCatalog())) return false; if (!getBranchId().equals(other.getBranchId())) return false; if (!getNote().equals(other.getNote())) return false; if (getForce() != other.getForce()) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + CATALOG_FIELD_NUMBER; hash = (53 * hash) + getCatalog().hashCode(); hash = (37 * hash) + BRANCH_ID_FIELD_NUMBER; hash = (53 * hash) + getBranchId().hashCode(); hash = (37 * hash) + NOTE_FIELD_NUMBER; hash = (53 * hash) + getNote().hashCode(); hash = (37 * hash) + FORCE_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getForce()); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.cloud.retail.v2beta.SetDefaultBranchRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.retail.v2beta.SetDefaultBranchRequest parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.retail.v2beta.SetDefaultBranchRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.retail.v2beta.SetDefaultBranchRequest 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.cloud.retail.v2beta.SetDefaultBranchRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.retail.v2beta.SetDefaultBranchRequest parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.retail.v2beta.SetDefaultBranchRequest parseFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.cloud.retail.v2beta.SetDefaultBranchRequest 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.cloud.retail.v2beta.SetDefaultBranchRequest parseDelimitedFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.cloud.retail.v2beta.SetDefaultBranchRequest 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.cloud.retail.v2beta.SetDefaultBranchRequest parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.cloud.retail.v2beta.SetDefaultBranchRequest 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.cloud.retail.v2beta.SetDefaultBranchRequest 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; } /** * * *
   * Request message to set a specified branch as new default_branch.
   * 
* * Protobuf type {@code google.cloud.retail.v2beta.SetDefaultBranchRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.cloud.retail.v2beta.SetDefaultBranchRequest) com.google.cloud.retail.v2beta.SetDefaultBranchRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.retail.v2beta.CatalogServiceProto .internal_static_google_cloud_retail_v2beta_SetDefaultBranchRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.retail.v2beta.CatalogServiceProto .internal_static_google_cloud_retail_v2beta_SetDefaultBranchRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.retail.v2beta.SetDefaultBranchRequest.class, com.google.cloud.retail.v2beta.SetDefaultBranchRequest.Builder.class); } // Construct using com.google.cloud.retail.v2beta.SetDefaultBranchRequest.newBuilder() private Builder() {} private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; catalog_ = ""; branchId_ = ""; note_ = ""; force_ = false; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.cloud.retail.v2beta.CatalogServiceProto .internal_static_google_cloud_retail_v2beta_SetDefaultBranchRequest_descriptor; } @java.lang.Override public com.google.cloud.retail.v2beta.SetDefaultBranchRequest getDefaultInstanceForType() { return com.google.cloud.retail.v2beta.SetDefaultBranchRequest.getDefaultInstance(); } @java.lang.Override public com.google.cloud.retail.v2beta.SetDefaultBranchRequest build() { com.google.cloud.retail.v2beta.SetDefaultBranchRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.cloud.retail.v2beta.SetDefaultBranchRequest buildPartial() { com.google.cloud.retail.v2beta.SetDefaultBranchRequest result = new com.google.cloud.retail.v2beta.SetDefaultBranchRequest(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.google.cloud.retail.v2beta.SetDefaultBranchRequest result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.catalog_ = catalog_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.branchId_ = branchId_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.note_ = note_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.force_ = force_; } } @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.cloud.retail.v2beta.SetDefaultBranchRequest) { return mergeFrom((com.google.cloud.retail.v2beta.SetDefaultBranchRequest) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.cloud.retail.v2beta.SetDefaultBranchRequest other) { if (other == com.google.cloud.retail.v2beta.SetDefaultBranchRequest.getDefaultInstance()) return this; if (!other.getCatalog().isEmpty()) { catalog_ = other.catalog_; bitField0_ |= 0x00000001; onChanged(); } if (!other.getBranchId().isEmpty()) { branchId_ = other.branchId_; bitField0_ |= 0x00000002; onChanged(); } if (!other.getNote().isEmpty()) { note_ = other.note_; bitField0_ |= 0x00000004; onChanged(); } if (other.getForce() != false) { setForce(other.getForce()); } 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: { catalog_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 18: { branchId_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000002; break; } // case 18 case 26: { note_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000004; break; } // case 26 case 32: { force_ = input.readBool(); bitField0_ |= 0x00000008; break; } // case 32 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag } break; } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.unwrapIOException(); } finally { onChanged(); } // finally return this; } private int bitField0_; private java.lang.Object catalog_ = ""; /** * * *
     * Full resource name of the catalog, such as
     * `projects/*/locations/global/catalogs/default_catalog`.
     * 
* * string catalog = 1 [(.google.api.resource_reference) = { ... } * * @return The catalog. */ public java.lang.String getCatalog() { java.lang.Object ref = catalog_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); catalog_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Full resource name of the catalog, such as
     * `projects/*/locations/global/catalogs/default_catalog`.
     * 
* * string catalog = 1 [(.google.api.resource_reference) = { ... } * * @return The bytes for catalog. */ public com.google.protobuf.ByteString getCatalogBytes() { java.lang.Object ref = catalog_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); catalog_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Full resource name of the catalog, such as
     * `projects/*/locations/global/catalogs/default_catalog`.
     * 
* * string catalog = 1 [(.google.api.resource_reference) = { ... } * * @param value The catalog to set. * @return This builder for chaining. */ public Builder setCatalog(java.lang.String value) { if (value == null) { throw new NullPointerException(); } catalog_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * * *
     * Full resource name of the catalog, such as
     * `projects/*/locations/global/catalogs/default_catalog`.
     * 
* * string catalog = 1 [(.google.api.resource_reference) = { ... } * * @return This builder for chaining. */ public Builder clearCatalog() { catalog_ = getDefaultInstance().getCatalog(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** * * *
     * Full resource name of the catalog, such as
     * `projects/*/locations/global/catalogs/default_catalog`.
     * 
* * string catalog = 1 [(.google.api.resource_reference) = { ... } * * @param value The bytes for catalog to set. * @return This builder for chaining. */ public Builder setCatalogBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); catalog_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private java.lang.Object branchId_ = ""; /** * * *
     * The final component of the resource name of a branch.
     *
     * This field must be one of "0", "1" or "2". Otherwise, an INVALID_ARGUMENT
     * error is returned.
     *
     * If there are no sufficient active products in the targeted branch and
     * [force][google.cloud.retail.v2beta.SetDefaultBranchRequest.force] is not
     * set, a FAILED_PRECONDITION error is returned.
     * 
* * string branch_id = 2 [(.google.api.resource_reference) = { ... } * * @return The branchId. */ public java.lang.String getBranchId() { java.lang.Object ref = branchId_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); branchId_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * The final component of the resource name of a branch.
     *
     * This field must be one of "0", "1" or "2". Otherwise, an INVALID_ARGUMENT
     * error is returned.
     *
     * If there are no sufficient active products in the targeted branch and
     * [force][google.cloud.retail.v2beta.SetDefaultBranchRequest.force] is not
     * set, a FAILED_PRECONDITION error is returned.
     * 
* * string branch_id = 2 [(.google.api.resource_reference) = { ... } * * @return The bytes for branchId. */ public com.google.protobuf.ByteString getBranchIdBytes() { java.lang.Object ref = branchId_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); branchId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * The final component of the resource name of a branch.
     *
     * This field must be one of "0", "1" or "2". Otherwise, an INVALID_ARGUMENT
     * error is returned.
     *
     * If there are no sufficient active products in the targeted branch and
     * [force][google.cloud.retail.v2beta.SetDefaultBranchRequest.force] is not
     * set, a FAILED_PRECONDITION error is returned.
     * 
* * string branch_id = 2 [(.google.api.resource_reference) = { ... } * * @param value The branchId to set. * @return This builder for chaining. */ public Builder setBranchId(java.lang.String value) { if (value == null) { throw new NullPointerException(); } branchId_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * The final component of the resource name of a branch.
     *
     * This field must be one of "0", "1" or "2". Otherwise, an INVALID_ARGUMENT
     * error is returned.
     *
     * If there are no sufficient active products in the targeted branch and
     * [force][google.cloud.retail.v2beta.SetDefaultBranchRequest.force] is not
     * set, a FAILED_PRECONDITION error is returned.
     * 
* * string branch_id = 2 [(.google.api.resource_reference) = { ... } * * @return This builder for chaining. */ public Builder clearBranchId() { branchId_ = getDefaultInstance().getBranchId(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } /** * * *
     * The final component of the resource name of a branch.
     *
     * This field must be one of "0", "1" or "2". Otherwise, an INVALID_ARGUMENT
     * error is returned.
     *
     * If there are no sufficient active products in the targeted branch and
     * [force][google.cloud.retail.v2beta.SetDefaultBranchRequest.force] is not
     * set, a FAILED_PRECONDITION error is returned.
     * 
* * string branch_id = 2 [(.google.api.resource_reference) = { ... } * * @param value The bytes for branchId to set. * @return This builder for chaining. */ public Builder setBranchIdBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); branchId_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } private java.lang.Object note_ = ""; /** * * *
     * Some note on this request, this can be retrieved by
     * [CatalogService.GetDefaultBranch][google.cloud.retail.v2beta.CatalogService.GetDefaultBranch]
     * before next valid default branch set occurs.
     *
     * This field must be a UTF-8 encoded string with a length limit of 1,000
     * characters. Otherwise, an INVALID_ARGUMENT error is returned.
     * 
* * string note = 3; * * @return The note. */ public java.lang.String getNote() { java.lang.Object ref = note_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); note_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Some note on this request, this can be retrieved by
     * [CatalogService.GetDefaultBranch][google.cloud.retail.v2beta.CatalogService.GetDefaultBranch]
     * before next valid default branch set occurs.
     *
     * This field must be a UTF-8 encoded string with a length limit of 1,000
     * characters. Otherwise, an INVALID_ARGUMENT error is returned.
     * 
* * string note = 3; * * @return The bytes for note. */ public com.google.protobuf.ByteString getNoteBytes() { java.lang.Object ref = note_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); note_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Some note on this request, this can be retrieved by
     * [CatalogService.GetDefaultBranch][google.cloud.retail.v2beta.CatalogService.GetDefaultBranch]
     * before next valid default branch set occurs.
     *
     * This field must be a UTF-8 encoded string with a length limit of 1,000
     * characters. Otherwise, an INVALID_ARGUMENT error is returned.
     * 
* * string note = 3; * * @param value The note to set. * @return This builder for chaining. */ public Builder setNote(java.lang.String value) { if (value == null) { throw new NullPointerException(); } note_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * Some note on this request, this can be retrieved by
     * [CatalogService.GetDefaultBranch][google.cloud.retail.v2beta.CatalogService.GetDefaultBranch]
     * before next valid default branch set occurs.
     *
     * This field must be a UTF-8 encoded string with a length limit of 1,000
     * characters. Otherwise, an INVALID_ARGUMENT error is returned.
     * 
* * string note = 3; * * @return This builder for chaining. */ public Builder clearNote() { note_ = getDefaultInstance().getNote(); bitField0_ = (bitField0_ & ~0x00000004); onChanged(); return this; } /** * * *
     * Some note on this request, this can be retrieved by
     * [CatalogService.GetDefaultBranch][google.cloud.retail.v2beta.CatalogService.GetDefaultBranch]
     * before next valid default branch set occurs.
     *
     * This field must be a UTF-8 encoded string with a length limit of 1,000
     * characters. Otherwise, an INVALID_ARGUMENT error is returned.
     * 
* * string note = 3; * * @param value The bytes for note to set. * @return This builder for chaining. */ public Builder setNoteBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); note_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } private boolean force_; /** * * *
     * If set to true, it permits switching to a branch with
     * [branch_id][google.cloud.retail.v2beta.SetDefaultBranchRequest.branch_id]
     * even if it has no sufficient active products.
     * 
* * bool force = 4; * * @return The force. */ @java.lang.Override public boolean getForce() { return force_; } /** * * *
     * If set to true, it permits switching to a branch with
     * [branch_id][google.cloud.retail.v2beta.SetDefaultBranchRequest.branch_id]
     * even if it has no sufficient active products.
     * 
* * bool force = 4; * * @param value The force to set. * @return This builder for chaining. */ public Builder setForce(boolean value) { force_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** * * *
     * If set to true, it permits switching to a branch with
     * [branch_id][google.cloud.retail.v2beta.SetDefaultBranchRequest.branch_id]
     * even if it has no sufficient active products.
     * 
* * bool force = 4; * * @return This builder for chaining. */ public Builder clearForce() { bitField0_ = (bitField0_ & ~0x00000008); force_ = false; onChanged(); return this; } @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:google.cloud.retail.v2beta.SetDefaultBranchRequest) } // @@protoc_insertion_point(class_scope:google.cloud.retail.v2beta.SetDefaultBranchRequest) private static final com.google.cloud.retail.v2beta.SetDefaultBranchRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.retail.v2beta.SetDefaultBranchRequest(); } public static com.google.cloud.retail.v2beta.SetDefaultBranchRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public SetDefaultBranchRequest 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.google.cloud.retail.v2beta.SetDefaultBranchRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy