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

io.temporal.api.workflowservice.v1.CreateScheduleRequest Maven / Gradle / Ivy

There is a newer version: 1.24.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: temporal/api/workflowservice/v1/request_response.proto

package io.temporal.api.workflowservice.v1;

/**
 * 
 * (-- api-linter: core::0133::request-parent-required=disabled
 *     aip.dev/not-precedent: CreateSchedule doesn't follow Google API format --)
 * (-- api-linter: core::0133::request-unknown-fields=disabled
 *     aip.dev/not-precedent: CreateSchedule doesn't follow Google API format --)
 * (-- api-linter: core::0133::request-resource-behavior=disabled
 *     aip.dev/not-precedent: field_behavior annotation not available in our gogo fork --)
 * (-- api-linter: core::0203::optional=disabled
 *     aip.dev/not-precedent: field_behavior annotation not available in our gogo fork --)
 * 
* * Protobuf type {@code temporal.api.workflowservice.v1.CreateScheduleRequest} */ @javax.annotation.Generated(value="protoc", comments="annotations:CreateScheduleRequest.java.pb.meta") public final class CreateScheduleRequest extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:temporal.api.workflowservice.v1.CreateScheduleRequest) CreateScheduleRequestOrBuilder { private static final long serialVersionUID = 0L; // Use CreateScheduleRequest.newBuilder() to construct. private CreateScheduleRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private CreateScheduleRequest() { namespace_ = ""; scheduleId_ = ""; identity_ = ""; requestId_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new CreateScheduleRequest(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private CreateScheduleRequest( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } 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(); namespace_ = s; break; } case 18: { java.lang.String s = input.readStringRequireUtf8(); scheduleId_ = s; break; } case 26: { io.temporal.api.schedule.v1.Schedule.Builder subBuilder = null; if (schedule_ != null) { subBuilder = schedule_.toBuilder(); } schedule_ = input.readMessage(io.temporal.api.schedule.v1.Schedule.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(schedule_); schedule_ = subBuilder.buildPartial(); } break; } case 34: { io.temporal.api.schedule.v1.SchedulePatch.Builder subBuilder = null; if (initialPatch_ != null) { subBuilder = initialPatch_.toBuilder(); } initialPatch_ = input.readMessage(io.temporal.api.schedule.v1.SchedulePatch.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(initialPatch_); initialPatch_ = subBuilder.buildPartial(); } break; } case 42: { java.lang.String s = input.readStringRequireUtf8(); identity_ = s; break; } case 50: { java.lang.String s = input.readStringRequireUtf8(); requestId_ = s; break; } case 58: { io.temporal.api.common.v1.Memo.Builder subBuilder = null; if (memo_ != null) { subBuilder = memo_.toBuilder(); } memo_ = input.readMessage(io.temporal.api.common.v1.Memo.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(memo_); memo_ = subBuilder.buildPartial(); } break; } case 66: { io.temporal.api.common.v1.SearchAttributes.Builder subBuilder = null; if (searchAttributes_ != null) { subBuilder = searchAttributes_.toBuilder(); } searchAttributes_ = input.readMessage(io.temporal.api.common.v1.SearchAttributes.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(searchAttributes_); searchAttributes_ = subBuilder.buildPartial(); } 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 { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.temporal.api.workflowservice.v1.RequestResponseProto.internal_static_temporal_api_workflowservice_v1_CreateScheduleRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.temporal.api.workflowservice.v1.RequestResponseProto.internal_static_temporal_api_workflowservice_v1_CreateScheduleRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( io.temporal.api.workflowservice.v1.CreateScheduleRequest.class, io.temporal.api.workflowservice.v1.CreateScheduleRequest.Builder.class); } public static final int NAMESPACE_FIELD_NUMBER = 1; private volatile java.lang.Object namespace_; /** *
   * The namespace the schedule should be created in.
   * 
* * string namespace = 1; * @return The namespace. */ public java.lang.String getNamespace() { java.lang.Object ref = namespace_; 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(); namespace_ = s; return s; } } /** *
   * The namespace the schedule should be created in.
   * 
* * string namespace = 1; * @return The bytes for namespace. */ public com.google.protobuf.ByteString getNamespaceBytes() { java.lang.Object ref = namespace_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); namespace_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int SCHEDULE_ID_FIELD_NUMBER = 2; private volatile java.lang.Object scheduleId_; /** *
   * The id of the new schedule.
   * 
* * string schedule_id = 2; * @return The scheduleId. */ public java.lang.String getScheduleId() { java.lang.Object ref = scheduleId_; 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(); scheduleId_ = s; return s; } } /** *
   * The id of the new schedule.
   * 
* * string schedule_id = 2; * @return The bytes for scheduleId. */ public com.google.protobuf.ByteString getScheduleIdBytes() { java.lang.Object ref = scheduleId_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); scheduleId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int SCHEDULE_FIELD_NUMBER = 3; private io.temporal.api.schedule.v1.Schedule schedule_; /** *
   * The schedule spec, policies, action, and initial state.
   * 
* * .temporal.api.schedule.v1.Schedule schedule = 3; * @return Whether the schedule field is set. */ public boolean hasSchedule() { return schedule_ != null; } /** *
   * The schedule spec, policies, action, and initial state.
   * 
* * .temporal.api.schedule.v1.Schedule schedule = 3; * @return The schedule. */ public io.temporal.api.schedule.v1.Schedule getSchedule() { return schedule_ == null ? io.temporal.api.schedule.v1.Schedule.getDefaultInstance() : schedule_; } /** *
   * The schedule spec, policies, action, and initial state.
   * 
* * .temporal.api.schedule.v1.Schedule schedule = 3; */ public io.temporal.api.schedule.v1.ScheduleOrBuilder getScheduleOrBuilder() { return getSchedule(); } public static final int INITIAL_PATCH_FIELD_NUMBER = 4; private io.temporal.api.schedule.v1.SchedulePatch initialPatch_; /** *
   * Optional initial patch (e.g. to run the action once immediately).
   * 
* * .temporal.api.schedule.v1.SchedulePatch initial_patch = 4; * @return Whether the initialPatch field is set. */ public boolean hasInitialPatch() { return initialPatch_ != null; } /** *
   * Optional initial patch (e.g. to run the action once immediately).
   * 
* * .temporal.api.schedule.v1.SchedulePatch initial_patch = 4; * @return The initialPatch. */ public io.temporal.api.schedule.v1.SchedulePatch getInitialPatch() { return initialPatch_ == null ? io.temporal.api.schedule.v1.SchedulePatch.getDefaultInstance() : initialPatch_; } /** *
   * Optional initial patch (e.g. to run the action once immediately).
   * 
* * .temporal.api.schedule.v1.SchedulePatch initial_patch = 4; */ public io.temporal.api.schedule.v1.SchedulePatchOrBuilder getInitialPatchOrBuilder() { return getInitialPatch(); } public static final int IDENTITY_FIELD_NUMBER = 5; private volatile java.lang.Object identity_; /** *
   * The identity of the client who initiated this request.
   * 
* * string identity = 5; * @return The identity. */ public java.lang.String getIdentity() { java.lang.Object ref = identity_; 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(); identity_ = s; return s; } } /** *
   * The identity of the client who initiated this request.
   * 
* * string identity = 5; * @return The bytes for identity. */ public com.google.protobuf.ByteString getIdentityBytes() { java.lang.Object ref = identity_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); identity_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int REQUEST_ID_FIELD_NUMBER = 6; private volatile java.lang.Object requestId_; /** *
   * A unique identifier for this create request for idempotence. Typically UUIDv4.
   * 
* * string request_id = 6; * @return The requestId. */ public java.lang.String getRequestId() { java.lang.Object ref = requestId_; 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(); requestId_ = s; return s; } } /** *
   * A unique identifier for this create request for idempotence. Typically UUIDv4.
   * 
* * string request_id = 6; * @return The bytes for requestId. */ public com.google.protobuf.ByteString getRequestIdBytes() { java.lang.Object ref = requestId_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); requestId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int MEMO_FIELD_NUMBER = 7; private io.temporal.api.common.v1.Memo memo_; /** *
   * Memo and search attributes to attach to the schedule itself.
   * 
* * .temporal.api.common.v1.Memo memo = 7; * @return Whether the memo field is set. */ public boolean hasMemo() { return memo_ != null; } /** *
   * Memo and search attributes to attach to the schedule itself.
   * 
* * .temporal.api.common.v1.Memo memo = 7; * @return The memo. */ public io.temporal.api.common.v1.Memo getMemo() { return memo_ == null ? io.temporal.api.common.v1.Memo.getDefaultInstance() : memo_; } /** *
   * Memo and search attributes to attach to the schedule itself.
   * 
* * .temporal.api.common.v1.Memo memo = 7; */ public io.temporal.api.common.v1.MemoOrBuilder getMemoOrBuilder() { return getMemo(); } public static final int SEARCH_ATTRIBUTES_FIELD_NUMBER = 8; private io.temporal.api.common.v1.SearchAttributes searchAttributes_; /** * .temporal.api.common.v1.SearchAttributes search_attributes = 8; * @return Whether the searchAttributes field is set. */ public boolean hasSearchAttributes() { return searchAttributes_ != null; } /** * .temporal.api.common.v1.SearchAttributes search_attributes = 8; * @return The searchAttributes. */ public io.temporal.api.common.v1.SearchAttributes getSearchAttributes() { return searchAttributes_ == null ? io.temporal.api.common.v1.SearchAttributes.getDefaultInstance() : searchAttributes_; } /** * .temporal.api.common.v1.SearchAttributes search_attributes = 8; */ public io.temporal.api.common.v1.SearchAttributesOrBuilder getSearchAttributesOrBuilder() { return getSearchAttributes(); } 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 (!getNamespaceBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, namespace_); } if (!getScheduleIdBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, scheduleId_); } if (schedule_ != null) { output.writeMessage(3, getSchedule()); } if (initialPatch_ != null) { output.writeMessage(4, getInitialPatch()); } if (!getIdentityBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 5, identity_); } if (!getRequestIdBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 6, requestId_); } if (memo_ != null) { output.writeMessage(7, getMemo()); } if (searchAttributes_ != null) { output.writeMessage(8, getSearchAttributes()); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!getNamespaceBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, namespace_); } if (!getScheduleIdBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, scheduleId_); } if (schedule_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(3, getSchedule()); } if (initialPatch_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(4, getInitialPatch()); } if (!getIdentityBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, identity_); } if (!getRequestIdBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, requestId_); } if (memo_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(7, getMemo()); } if (searchAttributes_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(8, getSearchAttributes()); } 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 io.temporal.api.workflowservice.v1.CreateScheduleRequest)) { return super.equals(obj); } io.temporal.api.workflowservice.v1.CreateScheduleRequest other = (io.temporal.api.workflowservice.v1.CreateScheduleRequest) obj; if (!getNamespace() .equals(other.getNamespace())) return false; if (!getScheduleId() .equals(other.getScheduleId())) return false; if (hasSchedule() != other.hasSchedule()) return false; if (hasSchedule()) { if (!getSchedule() .equals(other.getSchedule())) return false; } if (hasInitialPatch() != other.hasInitialPatch()) return false; if (hasInitialPatch()) { if (!getInitialPatch() .equals(other.getInitialPatch())) return false; } if (!getIdentity() .equals(other.getIdentity())) return false; if (!getRequestId() .equals(other.getRequestId())) return false; if (hasMemo() != other.hasMemo()) return false; if (hasMemo()) { if (!getMemo() .equals(other.getMemo())) return false; } if (hasSearchAttributes() != other.hasSearchAttributes()) return false; if (hasSearchAttributes()) { if (!getSearchAttributes() .equals(other.getSearchAttributes())) 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) + NAMESPACE_FIELD_NUMBER; hash = (53 * hash) + getNamespace().hashCode(); hash = (37 * hash) + SCHEDULE_ID_FIELD_NUMBER; hash = (53 * hash) + getScheduleId().hashCode(); if (hasSchedule()) { hash = (37 * hash) + SCHEDULE_FIELD_NUMBER; hash = (53 * hash) + getSchedule().hashCode(); } if (hasInitialPatch()) { hash = (37 * hash) + INITIAL_PATCH_FIELD_NUMBER; hash = (53 * hash) + getInitialPatch().hashCode(); } hash = (37 * hash) + IDENTITY_FIELD_NUMBER; hash = (53 * hash) + getIdentity().hashCode(); hash = (37 * hash) + REQUEST_ID_FIELD_NUMBER; hash = (53 * hash) + getRequestId().hashCode(); if (hasMemo()) { hash = (37 * hash) + MEMO_FIELD_NUMBER; hash = (53 * hash) + getMemo().hashCode(); } if (hasSearchAttributes()) { hash = (37 * hash) + SEARCH_ATTRIBUTES_FIELD_NUMBER; hash = (53 * hash) + getSearchAttributes().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static io.temporal.api.workflowservice.v1.CreateScheduleRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.temporal.api.workflowservice.v1.CreateScheduleRequest parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.temporal.api.workflowservice.v1.CreateScheduleRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.temporal.api.workflowservice.v1.CreateScheduleRequest parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.temporal.api.workflowservice.v1.CreateScheduleRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.temporal.api.workflowservice.v1.CreateScheduleRequest parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.temporal.api.workflowservice.v1.CreateScheduleRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.temporal.api.workflowservice.v1.CreateScheduleRequest 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 io.temporal.api.workflowservice.v1.CreateScheduleRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.temporal.api.workflowservice.v1.CreateScheduleRequest 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 io.temporal.api.workflowservice.v1.CreateScheduleRequest parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.temporal.api.workflowservice.v1.CreateScheduleRequest 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(io.temporal.api.workflowservice.v1.CreateScheduleRequest 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; } /** *
   * (-- api-linter: core::0133::request-parent-required=disabled
   *     aip.dev/not-precedent: CreateSchedule doesn't follow Google API format --)
   * (-- api-linter: core::0133::request-unknown-fields=disabled
   *     aip.dev/not-precedent: CreateSchedule doesn't follow Google API format --)
   * (-- api-linter: core::0133::request-resource-behavior=disabled
   *     aip.dev/not-precedent: field_behavior annotation not available in our gogo fork --)
   * (-- api-linter: core::0203::optional=disabled
   *     aip.dev/not-precedent: field_behavior annotation not available in our gogo fork --)
   * 
* * Protobuf type {@code temporal.api.workflowservice.v1.CreateScheduleRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:temporal.api.workflowservice.v1.CreateScheduleRequest) io.temporal.api.workflowservice.v1.CreateScheduleRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.temporal.api.workflowservice.v1.RequestResponseProto.internal_static_temporal_api_workflowservice_v1_CreateScheduleRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.temporal.api.workflowservice.v1.RequestResponseProto.internal_static_temporal_api_workflowservice_v1_CreateScheduleRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( io.temporal.api.workflowservice.v1.CreateScheduleRequest.class, io.temporal.api.workflowservice.v1.CreateScheduleRequest.Builder.class); } // Construct using io.temporal.api.workflowservice.v1.CreateScheduleRequest.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @java.lang.Override public Builder clear() { super.clear(); namespace_ = ""; scheduleId_ = ""; if (scheduleBuilder_ == null) { schedule_ = null; } else { schedule_ = null; scheduleBuilder_ = null; } if (initialPatchBuilder_ == null) { initialPatch_ = null; } else { initialPatch_ = null; initialPatchBuilder_ = null; } identity_ = ""; requestId_ = ""; if (memoBuilder_ == null) { memo_ = null; } else { memo_ = null; memoBuilder_ = null; } if (searchAttributesBuilder_ == null) { searchAttributes_ = null; } else { searchAttributes_ = null; searchAttributesBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.temporal.api.workflowservice.v1.RequestResponseProto.internal_static_temporal_api_workflowservice_v1_CreateScheduleRequest_descriptor; } @java.lang.Override public io.temporal.api.workflowservice.v1.CreateScheduleRequest getDefaultInstanceForType() { return io.temporal.api.workflowservice.v1.CreateScheduleRequest.getDefaultInstance(); } @java.lang.Override public io.temporal.api.workflowservice.v1.CreateScheduleRequest build() { io.temporal.api.workflowservice.v1.CreateScheduleRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.temporal.api.workflowservice.v1.CreateScheduleRequest buildPartial() { io.temporal.api.workflowservice.v1.CreateScheduleRequest result = new io.temporal.api.workflowservice.v1.CreateScheduleRequest(this); result.namespace_ = namespace_; result.scheduleId_ = scheduleId_; if (scheduleBuilder_ == null) { result.schedule_ = schedule_; } else { result.schedule_ = scheduleBuilder_.build(); } if (initialPatchBuilder_ == null) { result.initialPatch_ = initialPatch_; } else { result.initialPatch_ = initialPatchBuilder_.build(); } result.identity_ = identity_; result.requestId_ = requestId_; if (memoBuilder_ == null) { result.memo_ = memo_; } else { result.memo_ = memoBuilder_.build(); } if (searchAttributesBuilder_ == null) { result.searchAttributes_ = searchAttributes_; } else { result.searchAttributes_ = searchAttributesBuilder_.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 io.temporal.api.workflowservice.v1.CreateScheduleRequest) { return mergeFrom((io.temporal.api.workflowservice.v1.CreateScheduleRequest)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.temporal.api.workflowservice.v1.CreateScheduleRequest other) { if (other == io.temporal.api.workflowservice.v1.CreateScheduleRequest.getDefaultInstance()) return this; if (!other.getNamespace().isEmpty()) { namespace_ = other.namespace_; onChanged(); } if (!other.getScheduleId().isEmpty()) { scheduleId_ = other.scheduleId_; onChanged(); } if (other.hasSchedule()) { mergeSchedule(other.getSchedule()); } if (other.hasInitialPatch()) { mergeInitialPatch(other.getInitialPatch()); } if (!other.getIdentity().isEmpty()) { identity_ = other.identity_; onChanged(); } if (!other.getRequestId().isEmpty()) { requestId_ = other.requestId_; onChanged(); } if (other.hasMemo()) { mergeMemo(other.getMemo()); } if (other.hasSearchAttributes()) { mergeSearchAttributes(other.getSearchAttributes()); } 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 { io.temporal.api.workflowservice.v1.CreateScheduleRequest parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (io.temporal.api.workflowservice.v1.CreateScheduleRequest) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private java.lang.Object namespace_ = ""; /** *
     * The namespace the schedule should be created in.
     * 
* * string namespace = 1; * @return The namespace. */ public java.lang.String getNamespace() { java.lang.Object ref = namespace_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); namespace_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * The namespace the schedule should be created in.
     * 
* * string namespace = 1; * @return The bytes for namespace. */ public com.google.protobuf.ByteString getNamespaceBytes() { java.lang.Object ref = namespace_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); namespace_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * The namespace the schedule should be created in.
     * 
* * string namespace = 1; * @param value The namespace to set. * @return This builder for chaining. */ public Builder setNamespace( java.lang.String value) { if (value == null) { throw new NullPointerException(); } namespace_ = value; onChanged(); return this; } /** *
     * The namespace the schedule should be created in.
     * 
* * string namespace = 1; * @return This builder for chaining. */ public Builder clearNamespace() { namespace_ = getDefaultInstance().getNamespace(); onChanged(); return this; } /** *
     * The namespace the schedule should be created in.
     * 
* * string namespace = 1; * @param value The bytes for namespace to set. * @return This builder for chaining. */ public Builder setNamespaceBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); namespace_ = value; onChanged(); return this; } private java.lang.Object scheduleId_ = ""; /** *
     * The id of the new schedule.
     * 
* * string schedule_id = 2; * @return The scheduleId. */ public java.lang.String getScheduleId() { java.lang.Object ref = scheduleId_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); scheduleId_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * The id of the new schedule.
     * 
* * string schedule_id = 2; * @return The bytes for scheduleId. */ public com.google.protobuf.ByteString getScheduleIdBytes() { java.lang.Object ref = scheduleId_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); scheduleId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * The id of the new schedule.
     * 
* * string schedule_id = 2; * @param value The scheduleId to set. * @return This builder for chaining. */ public Builder setScheduleId( java.lang.String value) { if (value == null) { throw new NullPointerException(); } scheduleId_ = value; onChanged(); return this; } /** *
     * The id of the new schedule.
     * 
* * string schedule_id = 2; * @return This builder for chaining. */ public Builder clearScheduleId() { scheduleId_ = getDefaultInstance().getScheduleId(); onChanged(); return this; } /** *
     * The id of the new schedule.
     * 
* * string schedule_id = 2; * @param value The bytes for scheduleId to set. * @return This builder for chaining. */ public Builder setScheduleIdBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); scheduleId_ = value; onChanged(); return this; } private io.temporal.api.schedule.v1.Schedule schedule_; private com.google.protobuf.SingleFieldBuilderV3< io.temporal.api.schedule.v1.Schedule, io.temporal.api.schedule.v1.Schedule.Builder, io.temporal.api.schedule.v1.ScheduleOrBuilder> scheduleBuilder_; /** *
     * The schedule spec, policies, action, and initial state.
     * 
* * .temporal.api.schedule.v1.Schedule schedule = 3; * @return Whether the schedule field is set. */ public boolean hasSchedule() { return scheduleBuilder_ != null || schedule_ != null; } /** *
     * The schedule spec, policies, action, and initial state.
     * 
* * .temporal.api.schedule.v1.Schedule schedule = 3; * @return The schedule. */ public io.temporal.api.schedule.v1.Schedule getSchedule() { if (scheduleBuilder_ == null) { return schedule_ == null ? io.temporal.api.schedule.v1.Schedule.getDefaultInstance() : schedule_; } else { return scheduleBuilder_.getMessage(); } } /** *
     * The schedule spec, policies, action, and initial state.
     * 
* * .temporal.api.schedule.v1.Schedule schedule = 3; */ public Builder setSchedule(io.temporal.api.schedule.v1.Schedule value) { if (scheduleBuilder_ == null) { if (value == null) { throw new NullPointerException(); } schedule_ = value; onChanged(); } else { scheduleBuilder_.setMessage(value); } return this; } /** *
     * The schedule spec, policies, action, and initial state.
     * 
* * .temporal.api.schedule.v1.Schedule schedule = 3; */ public Builder setSchedule( io.temporal.api.schedule.v1.Schedule.Builder builderForValue) { if (scheduleBuilder_ == null) { schedule_ = builderForValue.build(); onChanged(); } else { scheduleBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * The schedule spec, policies, action, and initial state.
     * 
* * .temporal.api.schedule.v1.Schedule schedule = 3; */ public Builder mergeSchedule(io.temporal.api.schedule.v1.Schedule value) { if (scheduleBuilder_ == null) { if (schedule_ != null) { schedule_ = io.temporal.api.schedule.v1.Schedule.newBuilder(schedule_).mergeFrom(value).buildPartial(); } else { schedule_ = value; } onChanged(); } else { scheduleBuilder_.mergeFrom(value); } return this; } /** *
     * The schedule spec, policies, action, and initial state.
     * 
* * .temporal.api.schedule.v1.Schedule schedule = 3; */ public Builder clearSchedule() { if (scheduleBuilder_ == null) { schedule_ = null; onChanged(); } else { schedule_ = null; scheduleBuilder_ = null; } return this; } /** *
     * The schedule spec, policies, action, and initial state.
     * 
* * .temporal.api.schedule.v1.Schedule schedule = 3; */ public io.temporal.api.schedule.v1.Schedule.Builder getScheduleBuilder() { onChanged(); return getScheduleFieldBuilder().getBuilder(); } /** *
     * The schedule spec, policies, action, and initial state.
     * 
* * .temporal.api.schedule.v1.Schedule schedule = 3; */ public io.temporal.api.schedule.v1.ScheduleOrBuilder getScheduleOrBuilder() { if (scheduleBuilder_ != null) { return scheduleBuilder_.getMessageOrBuilder(); } else { return schedule_ == null ? io.temporal.api.schedule.v1.Schedule.getDefaultInstance() : schedule_; } } /** *
     * The schedule spec, policies, action, and initial state.
     * 
* * .temporal.api.schedule.v1.Schedule schedule = 3; */ private com.google.protobuf.SingleFieldBuilderV3< io.temporal.api.schedule.v1.Schedule, io.temporal.api.schedule.v1.Schedule.Builder, io.temporal.api.schedule.v1.ScheduleOrBuilder> getScheduleFieldBuilder() { if (scheduleBuilder_ == null) { scheduleBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< io.temporal.api.schedule.v1.Schedule, io.temporal.api.schedule.v1.Schedule.Builder, io.temporal.api.schedule.v1.ScheduleOrBuilder>( getSchedule(), getParentForChildren(), isClean()); schedule_ = null; } return scheduleBuilder_; } private io.temporal.api.schedule.v1.SchedulePatch initialPatch_; private com.google.protobuf.SingleFieldBuilderV3< io.temporal.api.schedule.v1.SchedulePatch, io.temporal.api.schedule.v1.SchedulePatch.Builder, io.temporal.api.schedule.v1.SchedulePatchOrBuilder> initialPatchBuilder_; /** *
     * Optional initial patch (e.g. to run the action once immediately).
     * 
* * .temporal.api.schedule.v1.SchedulePatch initial_patch = 4; * @return Whether the initialPatch field is set. */ public boolean hasInitialPatch() { return initialPatchBuilder_ != null || initialPatch_ != null; } /** *
     * Optional initial patch (e.g. to run the action once immediately).
     * 
* * .temporal.api.schedule.v1.SchedulePatch initial_patch = 4; * @return The initialPatch. */ public io.temporal.api.schedule.v1.SchedulePatch getInitialPatch() { if (initialPatchBuilder_ == null) { return initialPatch_ == null ? io.temporal.api.schedule.v1.SchedulePatch.getDefaultInstance() : initialPatch_; } else { return initialPatchBuilder_.getMessage(); } } /** *
     * Optional initial patch (e.g. to run the action once immediately).
     * 
* * .temporal.api.schedule.v1.SchedulePatch initial_patch = 4; */ public Builder setInitialPatch(io.temporal.api.schedule.v1.SchedulePatch value) { if (initialPatchBuilder_ == null) { if (value == null) { throw new NullPointerException(); } initialPatch_ = value; onChanged(); } else { initialPatchBuilder_.setMessage(value); } return this; } /** *
     * Optional initial patch (e.g. to run the action once immediately).
     * 
* * .temporal.api.schedule.v1.SchedulePatch initial_patch = 4; */ public Builder setInitialPatch( io.temporal.api.schedule.v1.SchedulePatch.Builder builderForValue) { if (initialPatchBuilder_ == null) { initialPatch_ = builderForValue.build(); onChanged(); } else { initialPatchBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * Optional initial patch (e.g. to run the action once immediately).
     * 
* * .temporal.api.schedule.v1.SchedulePatch initial_patch = 4; */ public Builder mergeInitialPatch(io.temporal.api.schedule.v1.SchedulePatch value) { if (initialPatchBuilder_ == null) { if (initialPatch_ != null) { initialPatch_ = io.temporal.api.schedule.v1.SchedulePatch.newBuilder(initialPatch_).mergeFrom(value).buildPartial(); } else { initialPatch_ = value; } onChanged(); } else { initialPatchBuilder_.mergeFrom(value); } return this; } /** *
     * Optional initial patch (e.g. to run the action once immediately).
     * 
* * .temporal.api.schedule.v1.SchedulePatch initial_patch = 4; */ public Builder clearInitialPatch() { if (initialPatchBuilder_ == null) { initialPatch_ = null; onChanged(); } else { initialPatch_ = null; initialPatchBuilder_ = null; } return this; } /** *
     * Optional initial patch (e.g. to run the action once immediately).
     * 
* * .temporal.api.schedule.v1.SchedulePatch initial_patch = 4; */ public io.temporal.api.schedule.v1.SchedulePatch.Builder getInitialPatchBuilder() { onChanged(); return getInitialPatchFieldBuilder().getBuilder(); } /** *
     * Optional initial patch (e.g. to run the action once immediately).
     * 
* * .temporal.api.schedule.v1.SchedulePatch initial_patch = 4; */ public io.temporal.api.schedule.v1.SchedulePatchOrBuilder getInitialPatchOrBuilder() { if (initialPatchBuilder_ != null) { return initialPatchBuilder_.getMessageOrBuilder(); } else { return initialPatch_ == null ? io.temporal.api.schedule.v1.SchedulePatch.getDefaultInstance() : initialPatch_; } } /** *
     * Optional initial patch (e.g. to run the action once immediately).
     * 
* * .temporal.api.schedule.v1.SchedulePatch initial_patch = 4; */ private com.google.protobuf.SingleFieldBuilderV3< io.temporal.api.schedule.v1.SchedulePatch, io.temporal.api.schedule.v1.SchedulePatch.Builder, io.temporal.api.schedule.v1.SchedulePatchOrBuilder> getInitialPatchFieldBuilder() { if (initialPatchBuilder_ == null) { initialPatchBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< io.temporal.api.schedule.v1.SchedulePatch, io.temporal.api.schedule.v1.SchedulePatch.Builder, io.temporal.api.schedule.v1.SchedulePatchOrBuilder>( getInitialPatch(), getParentForChildren(), isClean()); initialPatch_ = null; } return initialPatchBuilder_; } private java.lang.Object identity_ = ""; /** *
     * The identity of the client who initiated this request.
     * 
* * string identity = 5; * @return The identity. */ public java.lang.String getIdentity() { java.lang.Object ref = identity_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); identity_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * The identity of the client who initiated this request.
     * 
* * string identity = 5; * @return The bytes for identity. */ public com.google.protobuf.ByteString getIdentityBytes() { java.lang.Object ref = identity_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); identity_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * The identity of the client who initiated this request.
     * 
* * string identity = 5; * @param value The identity to set. * @return This builder for chaining. */ public Builder setIdentity( java.lang.String value) { if (value == null) { throw new NullPointerException(); } identity_ = value; onChanged(); return this; } /** *
     * The identity of the client who initiated this request.
     * 
* * string identity = 5; * @return This builder for chaining. */ public Builder clearIdentity() { identity_ = getDefaultInstance().getIdentity(); onChanged(); return this; } /** *
     * The identity of the client who initiated this request.
     * 
* * string identity = 5; * @param value The bytes for identity to set. * @return This builder for chaining. */ public Builder setIdentityBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); identity_ = value; onChanged(); return this; } private java.lang.Object requestId_ = ""; /** *
     * A unique identifier for this create request for idempotence. Typically UUIDv4.
     * 
* * string request_id = 6; * @return The requestId. */ public java.lang.String getRequestId() { java.lang.Object ref = requestId_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); requestId_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * A unique identifier for this create request for idempotence. Typically UUIDv4.
     * 
* * string request_id = 6; * @return The bytes for requestId. */ public com.google.protobuf.ByteString getRequestIdBytes() { java.lang.Object ref = requestId_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); requestId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * A unique identifier for this create request for idempotence. Typically UUIDv4.
     * 
* * string request_id = 6; * @param value The requestId to set. * @return This builder for chaining. */ public Builder setRequestId( java.lang.String value) { if (value == null) { throw new NullPointerException(); } requestId_ = value; onChanged(); return this; } /** *
     * A unique identifier for this create request for idempotence. Typically UUIDv4.
     * 
* * string request_id = 6; * @return This builder for chaining. */ public Builder clearRequestId() { requestId_ = getDefaultInstance().getRequestId(); onChanged(); return this; } /** *
     * A unique identifier for this create request for idempotence. Typically UUIDv4.
     * 
* * string request_id = 6; * @param value The bytes for requestId to set. * @return This builder for chaining. */ public Builder setRequestIdBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); requestId_ = value; onChanged(); return this; } private io.temporal.api.common.v1.Memo memo_; private com.google.protobuf.SingleFieldBuilderV3< io.temporal.api.common.v1.Memo, io.temporal.api.common.v1.Memo.Builder, io.temporal.api.common.v1.MemoOrBuilder> memoBuilder_; /** *
     * Memo and search attributes to attach to the schedule itself.
     * 
* * .temporal.api.common.v1.Memo memo = 7; * @return Whether the memo field is set. */ public boolean hasMemo() { return memoBuilder_ != null || memo_ != null; } /** *
     * Memo and search attributes to attach to the schedule itself.
     * 
* * .temporal.api.common.v1.Memo memo = 7; * @return The memo. */ public io.temporal.api.common.v1.Memo getMemo() { if (memoBuilder_ == null) { return memo_ == null ? io.temporal.api.common.v1.Memo.getDefaultInstance() : memo_; } else { return memoBuilder_.getMessage(); } } /** *
     * Memo and search attributes to attach to the schedule itself.
     * 
* * .temporal.api.common.v1.Memo memo = 7; */ public Builder setMemo(io.temporal.api.common.v1.Memo value) { if (memoBuilder_ == null) { if (value == null) { throw new NullPointerException(); } memo_ = value; onChanged(); } else { memoBuilder_.setMessage(value); } return this; } /** *
     * Memo and search attributes to attach to the schedule itself.
     * 
* * .temporal.api.common.v1.Memo memo = 7; */ public Builder setMemo( io.temporal.api.common.v1.Memo.Builder builderForValue) { if (memoBuilder_ == null) { memo_ = builderForValue.build(); onChanged(); } else { memoBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * Memo and search attributes to attach to the schedule itself.
     * 
* * .temporal.api.common.v1.Memo memo = 7; */ public Builder mergeMemo(io.temporal.api.common.v1.Memo value) { if (memoBuilder_ == null) { if (memo_ != null) { memo_ = io.temporal.api.common.v1.Memo.newBuilder(memo_).mergeFrom(value).buildPartial(); } else { memo_ = value; } onChanged(); } else { memoBuilder_.mergeFrom(value); } return this; } /** *
     * Memo and search attributes to attach to the schedule itself.
     * 
* * .temporal.api.common.v1.Memo memo = 7; */ public Builder clearMemo() { if (memoBuilder_ == null) { memo_ = null; onChanged(); } else { memo_ = null; memoBuilder_ = null; } return this; } /** *
     * Memo and search attributes to attach to the schedule itself.
     * 
* * .temporal.api.common.v1.Memo memo = 7; */ public io.temporal.api.common.v1.Memo.Builder getMemoBuilder() { onChanged(); return getMemoFieldBuilder().getBuilder(); } /** *
     * Memo and search attributes to attach to the schedule itself.
     * 
* * .temporal.api.common.v1.Memo memo = 7; */ public io.temporal.api.common.v1.MemoOrBuilder getMemoOrBuilder() { if (memoBuilder_ != null) { return memoBuilder_.getMessageOrBuilder(); } else { return memo_ == null ? io.temporal.api.common.v1.Memo.getDefaultInstance() : memo_; } } /** *
     * Memo and search attributes to attach to the schedule itself.
     * 
* * .temporal.api.common.v1.Memo memo = 7; */ private com.google.protobuf.SingleFieldBuilderV3< io.temporal.api.common.v1.Memo, io.temporal.api.common.v1.Memo.Builder, io.temporal.api.common.v1.MemoOrBuilder> getMemoFieldBuilder() { if (memoBuilder_ == null) { memoBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< io.temporal.api.common.v1.Memo, io.temporal.api.common.v1.Memo.Builder, io.temporal.api.common.v1.MemoOrBuilder>( getMemo(), getParentForChildren(), isClean()); memo_ = null; } return memoBuilder_; } private io.temporal.api.common.v1.SearchAttributes searchAttributes_; private com.google.protobuf.SingleFieldBuilderV3< io.temporal.api.common.v1.SearchAttributes, io.temporal.api.common.v1.SearchAttributes.Builder, io.temporal.api.common.v1.SearchAttributesOrBuilder> searchAttributesBuilder_; /** * .temporal.api.common.v1.SearchAttributes search_attributes = 8; * @return Whether the searchAttributes field is set. */ public boolean hasSearchAttributes() { return searchAttributesBuilder_ != null || searchAttributes_ != null; } /** * .temporal.api.common.v1.SearchAttributes search_attributes = 8; * @return The searchAttributes. */ public io.temporal.api.common.v1.SearchAttributes getSearchAttributes() { if (searchAttributesBuilder_ == null) { return searchAttributes_ == null ? io.temporal.api.common.v1.SearchAttributes.getDefaultInstance() : searchAttributes_; } else { return searchAttributesBuilder_.getMessage(); } } /** * .temporal.api.common.v1.SearchAttributes search_attributes = 8; */ public Builder setSearchAttributes(io.temporal.api.common.v1.SearchAttributes value) { if (searchAttributesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } searchAttributes_ = value; onChanged(); } else { searchAttributesBuilder_.setMessage(value); } return this; } /** * .temporal.api.common.v1.SearchAttributes search_attributes = 8; */ public Builder setSearchAttributes( io.temporal.api.common.v1.SearchAttributes.Builder builderForValue) { if (searchAttributesBuilder_ == null) { searchAttributes_ = builderForValue.build(); onChanged(); } else { searchAttributesBuilder_.setMessage(builderForValue.build()); } return this; } /** * .temporal.api.common.v1.SearchAttributes search_attributes = 8; */ public Builder mergeSearchAttributes(io.temporal.api.common.v1.SearchAttributes value) { if (searchAttributesBuilder_ == null) { if (searchAttributes_ != null) { searchAttributes_ = io.temporal.api.common.v1.SearchAttributes.newBuilder(searchAttributes_).mergeFrom(value).buildPartial(); } else { searchAttributes_ = value; } onChanged(); } else { searchAttributesBuilder_.mergeFrom(value); } return this; } /** * .temporal.api.common.v1.SearchAttributes search_attributes = 8; */ public Builder clearSearchAttributes() { if (searchAttributesBuilder_ == null) { searchAttributes_ = null; onChanged(); } else { searchAttributes_ = null; searchAttributesBuilder_ = null; } return this; } /** * .temporal.api.common.v1.SearchAttributes search_attributes = 8; */ public io.temporal.api.common.v1.SearchAttributes.Builder getSearchAttributesBuilder() { onChanged(); return getSearchAttributesFieldBuilder().getBuilder(); } /** * .temporal.api.common.v1.SearchAttributes search_attributes = 8; */ public io.temporal.api.common.v1.SearchAttributesOrBuilder getSearchAttributesOrBuilder() { if (searchAttributesBuilder_ != null) { return searchAttributesBuilder_.getMessageOrBuilder(); } else { return searchAttributes_ == null ? io.temporal.api.common.v1.SearchAttributes.getDefaultInstance() : searchAttributes_; } } /** * .temporal.api.common.v1.SearchAttributes search_attributes = 8; */ private com.google.protobuf.SingleFieldBuilderV3< io.temporal.api.common.v1.SearchAttributes, io.temporal.api.common.v1.SearchAttributes.Builder, io.temporal.api.common.v1.SearchAttributesOrBuilder> getSearchAttributesFieldBuilder() { if (searchAttributesBuilder_ == null) { searchAttributesBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< io.temporal.api.common.v1.SearchAttributes, io.temporal.api.common.v1.SearchAttributes.Builder, io.temporal.api.common.v1.SearchAttributesOrBuilder>( getSearchAttributes(), getParentForChildren(), isClean()); searchAttributes_ = null; } return searchAttributesBuilder_; } @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:temporal.api.workflowservice.v1.CreateScheduleRequest) } // @@protoc_insertion_point(class_scope:temporal.api.workflowservice.v1.CreateScheduleRequest) private static final io.temporal.api.workflowservice.v1.CreateScheduleRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.temporal.api.workflowservice.v1.CreateScheduleRequest(); } public static io.temporal.api.workflowservice.v1.CreateScheduleRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public CreateScheduleRequest parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new CreateScheduleRequest(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 io.temporal.api.workflowservice.v1.CreateScheduleRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy