com.google.cloud.dialogflow.cx.v3beta1.EventHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-cx-v3beta1 Show documentation
Show all versions of proto-google-cloud-dialogflow-cx-v3beta1 Show documentation
PROTO library for proto-google-cloud-dialogflow-cx-v3beta1
/*
* 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/dialogflow/cx/v3beta1/page.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.dialogflow.cx.v3beta1;
/**
*
*
*
* An event handler specifies an
* [event][google.cloud.dialogflow.cx.v3beta1.EventHandler.event] that can be
* handled during a session. When the specified event happens, the following
* actions are taken in order:
*
* * If there is a
* [`trigger_fulfillment`][google.cloud.dialogflow.cx.v3beta1.EventHandler.trigger_fulfillment]
* associated with the event, it will be called.
* * If there is a
* [`target_page`][google.cloud.dialogflow.cx.v3beta1.EventHandler.target_page]
* associated with the event, the session will transition into the specified
* page.
* * If there is a
* [`target_flow`][google.cloud.dialogflow.cx.v3beta1.EventHandler.target_flow]
* associated with the event, the session will transition into the specified
* flow.
*
*
* Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.EventHandler}
*/
public final class EventHandler extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.dialogflow.cx.v3beta1.EventHandler)
EventHandlerOrBuilder {
private static final long serialVersionUID = 0L;
// Use EventHandler.newBuilder() to construct.
private EventHandler(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private EventHandler() {
name_ = "";
event_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new EventHandler();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.cx.v3beta1.PageProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_EventHandler_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.cx.v3beta1.PageProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_EventHandler_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.cx.v3beta1.EventHandler.class,
com.google.cloud.dialogflow.cx.v3beta1.EventHandler.Builder.class);
}
private int bitField0_;
private int targetCase_ = 0;
@SuppressWarnings("serial")
private java.lang.Object target_;
public enum TargetCase
implements
com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
TARGET_PAGE(2),
TARGET_FLOW(3),
TARGET_PLAYBOOK(7),
TARGET_NOT_SET(0);
private final int value;
private TargetCase(int value) {
this.value = value;
}
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static TargetCase valueOf(int value) {
return forNumber(value);
}
public static TargetCase forNumber(int value) {
switch (value) {
case 2:
return TARGET_PAGE;
case 3:
return TARGET_FLOW;
case 7:
return TARGET_PLAYBOOK;
case 0:
return TARGET_NOT_SET;
default:
return null;
}
}
public int getNumber() {
return this.value;
}
};
public TargetCase getTargetCase() {
return TargetCase.forNumber(targetCase_);
}
public static final int NAME_FIELD_NUMBER = 6;
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
/**
*
*
*
* Output only. The unique identifier of this event handler.
*
*
* string name = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The name.
*/
@java.lang.Override
public java.lang.String getName() {
java.lang.Object ref = name_;
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();
name_ = s;
return s;
}
}
/**
*
*
*
* Output only. The unique identifier of this event handler.
*
*
* string name = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The bytes for name.
*/
@java.lang.Override
public com.google.protobuf.ByteString getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int EVENT_FIELD_NUMBER = 4;
@SuppressWarnings("serial")
private volatile java.lang.Object event_ = "";
/**
*
*
*
* Required. The name of the event to handle.
*
*
* string event = 4 [(.google.api.field_behavior) = REQUIRED];
*
* @return The event.
*/
@java.lang.Override
public java.lang.String getEvent() {
java.lang.Object ref = event_;
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();
event_ = s;
return s;
}
}
/**
*
*
*
* Required. The name of the event to handle.
*
*
* string event = 4 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for event.
*/
@java.lang.Override
public com.google.protobuf.ByteString getEventBytes() {
java.lang.Object ref = event_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
event_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int TRIGGER_FULFILLMENT_FIELD_NUMBER = 5;
private com.google.cloud.dialogflow.cx.v3beta1.Fulfillment triggerFulfillment_;
/**
*
*
*
* The fulfillment to call when the event occurs.
* Handling webhook errors with a fulfillment enabled with webhook could
* cause infinite loop. It is invalid to specify such fulfillment for a
* handler handling webhooks.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Fulfillment trigger_fulfillment = 5;
*
* @return Whether the triggerFulfillment field is set.
*/
@java.lang.Override
public boolean hasTriggerFulfillment() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* The fulfillment to call when the event occurs.
* Handling webhook errors with a fulfillment enabled with webhook could
* cause infinite loop. It is invalid to specify such fulfillment for a
* handler handling webhooks.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Fulfillment trigger_fulfillment = 5;
*
* @return The triggerFulfillment.
*/
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Fulfillment getTriggerFulfillment() {
return triggerFulfillment_ == null
? com.google.cloud.dialogflow.cx.v3beta1.Fulfillment.getDefaultInstance()
: triggerFulfillment_;
}
/**
*
*
*
* The fulfillment to call when the event occurs.
* Handling webhook errors with a fulfillment enabled with webhook could
* cause infinite loop. It is invalid to specify such fulfillment for a
* handler handling webhooks.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Fulfillment trigger_fulfillment = 5;
*/
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.FulfillmentOrBuilder
getTriggerFulfillmentOrBuilder() {
return triggerFulfillment_ == null
? com.google.cloud.dialogflow.cx.v3beta1.Fulfillment.getDefaultInstance()
: triggerFulfillment_;
}
public static final int TARGET_PAGE_FIELD_NUMBER = 2;
/**
*
*
*
* The target page to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>/pages/<Page ID>`.
*
*
* string target_page = 2 [(.google.api.resource_reference) = { ... }
*
* @return Whether the targetPage field is set.
*/
public boolean hasTargetPage() {
return targetCase_ == 2;
}
/**
*
*
*
* The target page to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>/pages/<Page ID>`.
*
*
* string target_page = 2 [(.google.api.resource_reference) = { ... }
*
* @return The targetPage.
*/
public java.lang.String getTargetPage() {
java.lang.Object ref = "";
if (targetCase_ == 2) {
ref = target_;
}
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();
if (targetCase_ == 2) {
target_ = s;
}
return s;
}
}
/**
*
*
*
* The target page to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>/pages/<Page ID>`.
*
*
* string target_page = 2 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for targetPage.
*/
public com.google.protobuf.ByteString getTargetPageBytes() {
java.lang.Object ref = "";
if (targetCase_ == 2) {
ref = target_;
}
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
if (targetCase_ == 2) {
target_ = b;
}
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int TARGET_FLOW_FIELD_NUMBER = 3;
/**
*
*
*
* The target flow to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>`.
*
*
* string target_flow = 3 [(.google.api.resource_reference) = { ... }
*
* @return Whether the targetFlow field is set.
*/
public boolean hasTargetFlow() {
return targetCase_ == 3;
}
/**
*
*
*
* The target flow to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>`.
*
*
* string target_flow = 3 [(.google.api.resource_reference) = { ... }
*
* @return The targetFlow.
*/
public java.lang.String getTargetFlow() {
java.lang.Object ref = "";
if (targetCase_ == 3) {
ref = target_;
}
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();
if (targetCase_ == 3) {
target_ = s;
}
return s;
}
}
/**
*
*
*
* The target flow to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>`.
*
*
* string target_flow = 3 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for targetFlow.
*/
public com.google.protobuf.ByteString getTargetFlowBytes() {
java.lang.Object ref = "";
if (targetCase_ == 3) {
ref = target_;
}
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
if (targetCase_ == 3) {
target_ = b;
}
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int TARGET_PLAYBOOK_FIELD_NUMBER = 7;
/**
*
*
*
* The target playbook to transition to.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/playbooks/<PlaybookID>`.
*
*
* string target_playbook = 7 [(.google.api.resource_reference) = { ... }
*
* @return Whether the targetPlaybook field is set.
*/
public boolean hasTargetPlaybook() {
return targetCase_ == 7;
}
/**
*
*
*
* The target playbook to transition to.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/playbooks/<PlaybookID>`.
*
*
* string target_playbook = 7 [(.google.api.resource_reference) = { ... }
*
* @return The targetPlaybook.
*/
public java.lang.String getTargetPlaybook() {
java.lang.Object ref = "";
if (targetCase_ == 7) {
ref = target_;
}
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();
if (targetCase_ == 7) {
target_ = s;
}
return s;
}
}
/**
*
*
*
* The target playbook to transition to.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/playbooks/<PlaybookID>`.
*
*
* string target_playbook = 7 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for targetPlaybook.
*/
public com.google.protobuf.ByteString getTargetPlaybookBytes() {
java.lang.Object ref = "";
if (targetCase_ == 7) {
ref = target_;
}
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
if (targetCase_ == 7) {
target_ = b;
}
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
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 (targetCase_ == 2) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, target_);
}
if (targetCase_ == 3) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, target_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(event_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, event_);
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(5, getTriggerFulfillment());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 6, name_);
}
if (targetCase_ == 7) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 7, target_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (targetCase_ == 2) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, target_);
}
if (targetCase_ == 3) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, target_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(event_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, event_);
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, getTriggerFulfillment());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, name_);
}
if (targetCase_ == 7) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, target_);
}
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.dialogflow.cx.v3beta1.EventHandler)) {
return super.equals(obj);
}
com.google.cloud.dialogflow.cx.v3beta1.EventHandler other =
(com.google.cloud.dialogflow.cx.v3beta1.EventHandler) obj;
if (!getName().equals(other.getName())) return false;
if (!getEvent().equals(other.getEvent())) return false;
if (hasTriggerFulfillment() != other.hasTriggerFulfillment()) return false;
if (hasTriggerFulfillment()) {
if (!getTriggerFulfillment().equals(other.getTriggerFulfillment())) return false;
}
if (!getTargetCase().equals(other.getTargetCase())) return false;
switch (targetCase_) {
case 2:
if (!getTargetPage().equals(other.getTargetPage())) return false;
break;
case 3:
if (!getTargetFlow().equals(other.getTargetFlow())) return false;
break;
case 7:
if (!getTargetPlaybook().equals(other.getTargetPlaybook())) return false;
break;
case 0:
default:
}
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) + NAME_FIELD_NUMBER;
hash = (53 * hash) + getName().hashCode();
hash = (37 * hash) + EVENT_FIELD_NUMBER;
hash = (53 * hash) + getEvent().hashCode();
if (hasTriggerFulfillment()) {
hash = (37 * hash) + TRIGGER_FULFILLMENT_FIELD_NUMBER;
hash = (53 * hash) + getTriggerFulfillment().hashCode();
}
switch (targetCase_) {
case 2:
hash = (37 * hash) + TARGET_PAGE_FIELD_NUMBER;
hash = (53 * hash) + getTargetPage().hashCode();
break;
case 3:
hash = (37 * hash) + TARGET_FLOW_FIELD_NUMBER;
hash = (53 * hash) + getTargetFlow().hashCode();
break;
case 7:
hash = (37 * hash) + TARGET_PLAYBOOK_FIELD_NUMBER;
hash = (53 * hash) + getTargetPlaybook().hashCode();
break;
case 0:
default:
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.dialogflow.cx.v3beta1.EventHandler parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.cx.v3beta1.EventHandler 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.dialogflow.cx.v3beta1.EventHandler parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.cx.v3beta1.EventHandler 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.dialogflow.cx.v3beta1.EventHandler parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.cx.v3beta1.EventHandler parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.dialogflow.cx.v3beta1.EventHandler parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.cx.v3beta1.EventHandler 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.dialogflow.cx.v3beta1.EventHandler parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.cx.v3beta1.EventHandler 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.dialogflow.cx.v3beta1.EventHandler parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.cx.v3beta1.EventHandler 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.dialogflow.cx.v3beta1.EventHandler 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;
}
/**
*
*
*
* An event handler specifies an
* [event][google.cloud.dialogflow.cx.v3beta1.EventHandler.event] that can be
* handled during a session. When the specified event happens, the following
* actions are taken in order:
*
* * If there is a
* [`trigger_fulfillment`][google.cloud.dialogflow.cx.v3beta1.EventHandler.trigger_fulfillment]
* associated with the event, it will be called.
* * If there is a
* [`target_page`][google.cloud.dialogflow.cx.v3beta1.EventHandler.target_page]
* associated with the event, the session will transition into the specified
* page.
* * If there is a
* [`target_flow`][google.cloud.dialogflow.cx.v3beta1.EventHandler.target_flow]
* associated with the event, the session will transition into the specified
* flow.
*
*
* Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.EventHandler}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.cx.v3beta1.EventHandler)
com.google.cloud.dialogflow.cx.v3beta1.EventHandlerOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.cx.v3beta1.PageProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_EventHandler_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.cx.v3beta1.PageProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_EventHandler_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.cx.v3beta1.EventHandler.class,
com.google.cloud.dialogflow.cx.v3beta1.EventHandler.Builder.class);
}
// Construct using com.google.cloud.dialogflow.cx.v3beta1.EventHandler.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getTriggerFulfillmentFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
name_ = "";
event_ = "";
triggerFulfillment_ = null;
if (triggerFulfillmentBuilder_ != null) {
triggerFulfillmentBuilder_.dispose();
triggerFulfillmentBuilder_ = null;
}
targetCase_ = 0;
target_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.dialogflow.cx.v3beta1.PageProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_EventHandler_descriptor;
}
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.EventHandler getDefaultInstanceForType() {
return com.google.cloud.dialogflow.cx.v3beta1.EventHandler.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.EventHandler build() {
com.google.cloud.dialogflow.cx.v3beta1.EventHandler result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.EventHandler buildPartial() {
com.google.cloud.dialogflow.cx.v3beta1.EventHandler result =
new com.google.cloud.dialogflow.cx.v3beta1.EventHandler(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
buildPartialOneofs(result);
onBuilt();
return result;
}
private void buildPartial0(com.google.cloud.dialogflow.cx.v3beta1.EventHandler result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.name_ = name_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.event_ = event_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000004) != 0)) {
result.triggerFulfillment_ =
triggerFulfillmentBuilder_ == null
? triggerFulfillment_
: triggerFulfillmentBuilder_.build();
to_bitField0_ |= 0x00000001;
}
result.bitField0_ |= to_bitField0_;
}
private void buildPartialOneofs(com.google.cloud.dialogflow.cx.v3beta1.EventHandler result) {
result.targetCase_ = targetCase_;
result.target_ = this.target_;
}
@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.dialogflow.cx.v3beta1.EventHandler) {
return mergeFrom((com.google.cloud.dialogflow.cx.v3beta1.EventHandler) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.dialogflow.cx.v3beta1.EventHandler other) {
if (other == com.google.cloud.dialogflow.cx.v3beta1.EventHandler.getDefaultInstance())
return this;
if (!other.getName().isEmpty()) {
name_ = other.name_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.getEvent().isEmpty()) {
event_ = other.event_;
bitField0_ |= 0x00000002;
onChanged();
}
if (other.hasTriggerFulfillment()) {
mergeTriggerFulfillment(other.getTriggerFulfillment());
}
switch (other.getTargetCase()) {
case TARGET_PAGE:
{
targetCase_ = 2;
target_ = other.target_;
onChanged();
break;
}
case TARGET_FLOW:
{
targetCase_ = 3;
target_ = other.target_;
onChanged();
break;
}
case TARGET_PLAYBOOK:
{
targetCase_ = 7;
target_ = other.target_;
onChanged();
break;
}
case TARGET_NOT_SET:
{
break;
}
}
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 18:
{
java.lang.String s = input.readStringRequireUtf8();
targetCase_ = 2;
target_ = s;
break;
} // case 18
case 26:
{
java.lang.String s = input.readStringRequireUtf8();
targetCase_ = 3;
target_ = s;
break;
} // case 26
case 34:
{
event_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 34
case 42:
{
input.readMessage(
getTriggerFulfillmentFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000004;
break;
} // case 42
case 50:
{
name_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 50
case 58:
{
java.lang.String s = input.readStringRequireUtf8();
targetCase_ = 7;
target_ = s;
break;
} // case 58
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 targetCase_ = 0;
private java.lang.Object target_;
public TargetCase getTargetCase() {
return TargetCase.forNumber(targetCase_);
}
public Builder clearTarget() {
targetCase_ = 0;
target_ = null;
onChanged();
return this;
}
private int bitField0_;
private java.lang.Object name_ = "";
/**
*
*
*
* Output only. The unique identifier of this event handler.
*
*
* string name = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The name.
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
name_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Output only. The unique identifier of this event handler.
*
*
* string name = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The bytes for name.
*/
public com.google.protobuf.ByteString getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Output only. The unique identifier of this event handler.
*
*
* string name = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @param value The name to set.
* @return This builder for chaining.
*/
public Builder setName(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
name_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Output only. The unique identifier of this event handler.
*
*
* string name = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return This builder for chaining.
*/
public Builder clearName() {
name_ = getDefaultInstance().getName();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* Output only. The unique identifier of this event handler.
*
*
* string name = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @param value The bytes for name to set.
* @return This builder for chaining.
*/
public Builder setNameBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
name_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object event_ = "";
/**
*
*
*
* Required. The name of the event to handle.
*
*
* string event = 4 [(.google.api.field_behavior) = REQUIRED];
*
* @return The event.
*/
public java.lang.String getEvent() {
java.lang.Object ref = event_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
event_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Required. The name of the event to handle.
*
*
* string event = 4 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for event.
*/
public com.google.protobuf.ByteString getEventBytes() {
java.lang.Object ref = event_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
event_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Required. The name of the event to handle.
*
*
* string event = 4 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The event to set.
* @return This builder for chaining.
*/
public Builder setEvent(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
event_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* Required. The name of the event to handle.
*
*
* string event = 4 [(.google.api.field_behavior) = REQUIRED];
*
* @return This builder for chaining.
*/
public Builder clearEvent() {
event_ = getDefaultInstance().getEvent();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
*
*
*
* Required. The name of the event to handle.
*
*
* string event = 4 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The bytes for event to set.
* @return This builder for chaining.
*/
public Builder setEventBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
event_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private com.google.cloud.dialogflow.cx.v3beta1.Fulfillment triggerFulfillment_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.cx.v3beta1.Fulfillment,
com.google.cloud.dialogflow.cx.v3beta1.Fulfillment.Builder,
com.google.cloud.dialogflow.cx.v3beta1.FulfillmentOrBuilder>
triggerFulfillmentBuilder_;
/**
*
*
*
* The fulfillment to call when the event occurs.
* Handling webhook errors with a fulfillment enabled with webhook could
* cause infinite loop. It is invalid to specify such fulfillment for a
* handler handling webhooks.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Fulfillment trigger_fulfillment = 5;
*
* @return Whether the triggerFulfillment field is set.
*/
public boolean hasTriggerFulfillment() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
*
*
*
* The fulfillment to call when the event occurs.
* Handling webhook errors with a fulfillment enabled with webhook could
* cause infinite loop. It is invalid to specify such fulfillment for a
* handler handling webhooks.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Fulfillment trigger_fulfillment = 5;
*
* @return The triggerFulfillment.
*/
public com.google.cloud.dialogflow.cx.v3beta1.Fulfillment getTriggerFulfillment() {
if (triggerFulfillmentBuilder_ == null) {
return triggerFulfillment_ == null
? com.google.cloud.dialogflow.cx.v3beta1.Fulfillment.getDefaultInstance()
: triggerFulfillment_;
} else {
return triggerFulfillmentBuilder_.getMessage();
}
}
/**
*
*
*
* The fulfillment to call when the event occurs.
* Handling webhook errors with a fulfillment enabled with webhook could
* cause infinite loop. It is invalid to specify such fulfillment for a
* handler handling webhooks.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Fulfillment trigger_fulfillment = 5;
*/
public Builder setTriggerFulfillment(com.google.cloud.dialogflow.cx.v3beta1.Fulfillment value) {
if (triggerFulfillmentBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
triggerFulfillment_ = value;
} else {
triggerFulfillmentBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* The fulfillment to call when the event occurs.
* Handling webhook errors with a fulfillment enabled with webhook could
* cause infinite loop. It is invalid to specify such fulfillment for a
* handler handling webhooks.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Fulfillment trigger_fulfillment = 5;
*/
public Builder setTriggerFulfillment(
com.google.cloud.dialogflow.cx.v3beta1.Fulfillment.Builder builderForValue) {
if (triggerFulfillmentBuilder_ == null) {
triggerFulfillment_ = builderForValue.build();
} else {
triggerFulfillmentBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* The fulfillment to call when the event occurs.
* Handling webhook errors with a fulfillment enabled with webhook could
* cause infinite loop. It is invalid to specify such fulfillment for a
* handler handling webhooks.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Fulfillment trigger_fulfillment = 5;
*/
public Builder mergeTriggerFulfillment(
com.google.cloud.dialogflow.cx.v3beta1.Fulfillment value) {
if (triggerFulfillmentBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0)
&& triggerFulfillment_ != null
&& triggerFulfillment_
!= com.google.cloud.dialogflow.cx.v3beta1.Fulfillment.getDefaultInstance()) {
getTriggerFulfillmentBuilder().mergeFrom(value);
} else {
triggerFulfillment_ = value;
}
} else {
triggerFulfillmentBuilder_.mergeFrom(value);
}
if (triggerFulfillment_ != null) {
bitField0_ |= 0x00000004;
onChanged();
}
return this;
}
/**
*
*
*
* The fulfillment to call when the event occurs.
* Handling webhook errors with a fulfillment enabled with webhook could
* cause infinite loop. It is invalid to specify such fulfillment for a
* handler handling webhooks.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Fulfillment trigger_fulfillment = 5;
*/
public Builder clearTriggerFulfillment() {
bitField0_ = (bitField0_ & ~0x00000004);
triggerFulfillment_ = null;
if (triggerFulfillmentBuilder_ != null) {
triggerFulfillmentBuilder_.dispose();
triggerFulfillmentBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* The fulfillment to call when the event occurs.
* Handling webhook errors with a fulfillment enabled with webhook could
* cause infinite loop. It is invalid to specify such fulfillment for a
* handler handling webhooks.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Fulfillment trigger_fulfillment = 5;
*/
public com.google.cloud.dialogflow.cx.v3beta1.Fulfillment.Builder
getTriggerFulfillmentBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getTriggerFulfillmentFieldBuilder().getBuilder();
}
/**
*
*
*
* The fulfillment to call when the event occurs.
* Handling webhook errors with a fulfillment enabled with webhook could
* cause infinite loop. It is invalid to specify such fulfillment for a
* handler handling webhooks.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Fulfillment trigger_fulfillment = 5;
*/
public com.google.cloud.dialogflow.cx.v3beta1.FulfillmentOrBuilder
getTriggerFulfillmentOrBuilder() {
if (triggerFulfillmentBuilder_ != null) {
return triggerFulfillmentBuilder_.getMessageOrBuilder();
} else {
return triggerFulfillment_ == null
? com.google.cloud.dialogflow.cx.v3beta1.Fulfillment.getDefaultInstance()
: triggerFulfillment_;
}
}
/**
*
*
*
* The fulfillment to call when the event occurs.
* Handling webhook errors with a fulfillment enabled with webhook could
* cause infinite loop. It is invalid to specify such fulfillment for a
* handler handling webhooks.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Fulfillment trigger_fulfillment = 5;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.cx.v3beta1.Fulfillment,
com.google.cloud.dialogflow.cx.v3beta1.Fulfillment.Builder,
com.google.cloud.dialogflow.cx.v3beta1.FulfillmentOrBuilder>
getTriggerFulfillmentFieldBuilder() {
if (triggerFulfillmentBuilder_ == null) {
triggerFulfillmentBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.cx.v3beta1.Fulfillment,
com.google.cloud.dialogflow.cx.v3beta1.Fulfillment.Builder,
com.google.cloud.dialogflow.cx.v3beta1.FulfillmentOrBuilder>(
getTriggerFulfillment(), getParentForChildren(), isClean());
triggerFulfillment_ = null;
}
return triggerFulfillmentBuilder_;
}
/**
*
*
*
* The target page to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>/pages/<Page ID>`.
*
*
* string target_page = 2 [(.google.api.resource_reference) = { ... }
*
* @return Whether the targetPage field is set.
*/
@java.lang.Override
public boolean hasTargetPage() {
return targetCase_ == 2;
}
/**
*
*
*
* The target page to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>/pages/<Page ID>`.
*
*
* string target_page = 2 [(.google.api.resource_reference) = { ... }
*
* @return The targetPage.
*/
@java.lang.Override
public java.lang.String getTargetPage() {
java.lang.Object ref = "";
if (targetCase_ == 2) {
ref = target_;
}
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (targetCase_ == 2) {
target_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* The target page to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>/pages/<Page ID>`.
*
*
* string target_page = 2 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for targetPage.
*/
@java.lang.Override
public com.google.protobuf.ByteString getTargetPageBytes() {
java.lang.Object ref = "";
if (targetCase_ == 2) {
ref = target_;
}
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
if (targetCase_ == 2) {
target_ = b;
}
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The target page to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>/pages/<Page ID>`.
*
*
* string target_page = 2 [(.google.api.resource_reference) = { ... }
*
* @param value The targetPage to set.
* @return This builder for chaining.
*/
public Builder setTargetPage(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
targetCase_ = 2;
target_ = value;
onChanged();
return this;
}
/**
*
*
*
* The target page to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>/pages/<Page ID>`.
*
*
* string target_page = 2 [(.google.api.resource_reference) = { ... }
*
* @return This builder for chaining.
*/
public Builder clearTargetPage() {
if (targetCase_ == 2) {
targetCase_ = 0;
target_ = null;
onChanged();
}
return this;
}
/**
*
*
*
* The target page to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>/pages/<Page ID>`.
*
*
* string target_page = 2 [(.google.api.resource_reference) = { ... }
*
* @param value The bytes for targetPage to set.
* @return This builder for chaining.
*/
public Builder setTargetPageBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
targetCase_ = 2;
target_ = value;
onChanged();
return this;
}
/**
*
*
*
* The target flow to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>`.
*
*
* string target_flow = 3 [(.google.api.resource_reference) = { ... }
*
* @return Whether the targetFlow field is set.
*/
@java.lang.Override
public boolean hasTargetFlow() {
return targetCase_ == 3;
}
/**
*
*
*
* The target flow to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>`.
*
*
* string target_flow = 3 [(.google.api.resource_reference) = { ... }
*
* @return The targetFlow.
*/
@java.lang.Override
public java.lang.String getTargetFlow() {
java.lang.Object ref = "";
if (targetCase_ == 3) {
ref = target_;
}
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (targetCase_ == 3) {
target_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* The target flow to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>`.
*
*
* string target_flow = 3 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for targetFlow.
*/
@java.lang.Override
public com.google.protobuf.ByteString getTargetFlowBytes() {
java.lang.Object ref = "";
if (targetCase_ == 3) {
ref = target_;
}
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
if (targetCase_ == 3) {
target_ = b;
}
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The target flow to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>`.
*
*
* string target_flow = 3 [(.google.api.resource_reference) = { ... }
*
* @param value The targetFlow to set.
* @return This builder for chaining.
*/
public Builder setTargetFlow(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
targetCase_ = 3;
target_ = value;
onChanged();
return this;
}
/**
*
*
*
* The target flow to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>`.
*
*
* string target_flow = 3 [(.google.api.resource_reference) = { ... }
*
* @return This builder for chaining.
*/
public Builder clearTargetFlow() {
if (targetCase_ == 3) {
targetCase_ = 0;
target_ = null;
onChanged();
}
return this;
}
/**
*
*
*
* The target flow to transition to.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>`.
*
*
* string target_flow = 3 [(.google.api.resource_reference) = { ... }
*
* @param value The bytes for targetFlow to set.
* @return This builder for chaining.
*/
public Builder setTargetFlowBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
targetCase_ = 3;
target_ = value;
onChanged();
return this;
}
/**
*
*
*
* The target playbook to transition to.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/playbooks/<PlaybookID>`.
*
*
* string target_playbook = 7 [(.google.api.resource_reference) = { ... }
*
* @return Whether the targetPlaybook field is set.
*/
@java.lang.Override
public boolean hasTargetPlaybook() {
return targetCase_ == 7;
}
/**
*
*
*
* The target playbook to transition to.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/playbooks/<PlaybookID>`.
*
*
* string target_playbook = 7 [(.google.api.resource_reference) = { ... }
*
* @return The targetPlaybook.
*/
@java.lang.Override
public java.lang.String getTargetPlaybook() {
java.lang.Object ref = "";
if (targetCase_ == 7) {
ref = target_;
}
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (targetCase_ == 7) {
target_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* The target playbook to transition to.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/playbooks/<PlaybookID>`.
*
*
* string target_playbook = 7 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for targetPlaybook.
*/
@java.lang.Override
public com.google.protobuf.ByteString getTargetPlaybookBytes() {
java.lang.Object ref = "";
if (targetCase_ == 7) {
ref = target_;
}
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
if (targetCase_ == 7) {
target_ = b;
}
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The target playbook to transition to.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/playbooks/<PlaybookID>`.
*
*
* string target_playbook = 7 [(.google.api.resource_reference) = { ... }
*
* @param value The targetPlaybook to set.
* @return This builder for chaining.
*/
public Builder setTargetPlaybook(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
targetCase_ = 7;
target_ = value;
onChanged();
return this;
}
/**
*
*
*
* The target playbook to transition to.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/playbooks/<PlaybookID>`.
*
*
* string target_playbook = 7 [(.google.api.resource_reference) = { ... }
*
* @return This builder for chaining.
*/
public Builder clearTargetPlaybook() {
if (targetCase_ == 7) {
targetCase_ = 0;
target_ = null;
onChanged();
}
return this;
}
/**
*
*
*
* The target playbook to transition to.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/playbooks/<PlaybookID>`.
*
*
* string target_playbook = 7 [(.google.api.resource_reference) = { ... }
*
* @param value The bytes for targetPlaybook to set.
* @return This builder for chaining.
*/
public Builder setTargetPlaybookBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
targetCase_ = 7;
target_ = value;
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.dialogflow.cx.v3beta1.EventHandler)
}
// @@protoc_insertion_point(class_scope:google.cloud.dialogflow.cx.v3beta1.EventHandler)
private static final com.google.cloud.dialogflow.cx.v3beta1.EventHandler DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.dialogflow.cx.v3beta1.EventHandler();
}
public static com.google.cloud.dialogflow.cx.v3beta1.EventHandler getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public EventHandler 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.dialogflow.cx.v3beta1.EventHandler getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}