
com.google.cloud.visionai.v1.AppPlatformEventBody Maven / Gradle / Ivy
/*
* 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/visionai/v1/annotations.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.visionai.v1;
/**
*
*
*
* Message of content of appPlatform event
*
*
* Protobuf type {@code google.cloud.visionai.v1.AppPlatformEventBody}
*/
public final class AppPlatformEventBody extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.visionai.v1.AppPlatformEventBody)
AppPlatformEventBodyOrBuilder {
private static final long serialVersionUID = 0L;
// Use AppPlatformEventBody.newBuilder() to construct.
private AppPlatformEventBody(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private AppPlatformEventBody() {
eventMessage_ = "";
eventId_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new AppPlatformEventBody();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.visionai.v1.AnnotationsProto
.internal_static_google_cloud_visionai_v1_AppPlatformEventBody_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.visionai.v1.AnnotationsProto
.internal_static_google_cloud_visionai_v1_AppPlatformEventBody_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.visionai.v1.AppPlatformEventBody.class,
com.google.cloud.visionai.v1.AppPlatformEventBody.Builder.class);
}
private int bitField0_;
public static final int EVENT_MESSAGE_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object eventMessage_ = "";
/**
*
*
*
* Human readable string of the event like "There are more than 6 people in
* the scene". or "Shelf is empty!".
*
*
* string event_message = 1;
*
* @return The eventMessage.
*/
@java.lang.Override
public java.lang.String getEventMessage() {
java.lang.Object ref = eventMessage_;
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();
eventMessage_ = s;
return s;
}
}
/**
*
*
*
* Human readable string of the event like "There are more than 6 people in
* the scene". or "Shelf is empty!".
*
*
* string event_message = 1;
*
* @return The bytes for eventMessage.
*/
@java.lang.Override
public com.google.protobuf.ByteString getEventMessageBytes() {
java.lang.Object ref = eventMessage_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
eventMessage_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PAYLOAD_FIELD_NUMBER = 2;
private com.google.protobuf.Struct payload_;
/**
*
*
*
* For the case of Pub/Sub, it will be stored in the message attributes.
* pubsub.proto
*
*
* .google.protobuf.Struct payload = 2;
*
* @return Whether the payload field is set.
*/
@java.lang.Override
public boolean hasPayload() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* For the case of Pub/Sub, it will be stored in the message attributes.
* pubsub.proto
*
*
* .google.protobuf.Struct payload = 2;
*
* @return The payload.
*/
@java.lang.Override
public com.google.protobuf.Struct getPayload() {
return payload_ == null ? com.google.protobuf.Struct.getDefaultInstance() : payload_;
}
/**
*
*
*
* For the case of Pub/Sub, it will be stored in the message attributes.
* pubsub.proto
*
*
* .google.protobuf.Struct payload = 2;
*/
@java.lang.Override
public com.google.protobuf.StructOrBuilder getPayloadOrBuilder() {
return payload_ == null ? com.google.protobuf.Struct.getDefaultInstance() : payload_;
}
public static final int EVENT_ID_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private volatile java.lang.Object eventId_ = "";
/**
*
*
*
* User defined Event Id, used to classify event, within a delivery interval,
* events from the same application instance with the same id will be
* de-duplicated & only first one will be sent out. Empty event_id will be
* treated as "".
*
*
* string event_id = 3;
*
* @return The eventId.
*/
@java.lang.Override
public java.lang.String getEventId() {
java.lang.Object ref = eventId_;
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();
eventId_ = s;
return s;
}
}
/**
*
*
*
* User defined Event Id, used to classify event, within a delivery interval,
* events from the same application instance with the same id will be
* de-duplicated & only first one will be sent out. Empty event_id will be
* treated as "".
*
*
* string event_id = 3;
*
* @return The bytes for eventId.
*/
@java.lang.Override
public com.google.protobuf.ByteString getEventIdBytes() {
java.lang.Object ref = eventId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
eventId_ = 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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(eventMessage_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, eventMessage_);
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(2, getPayload());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(eventId_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, eventId_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(eventMessage_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, eventMessage_);
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getPayload());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(eventId_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, eventId_);
}
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.visionai.v1.AppPlatformEventBody)) {
return super.equals(obj);
}
com.google.cloud.visionai.v1.AppPlatformEventBody other =
(com.google.cloud.visionai.v1.AppPlatformEventBody) obj;
if (!getEventMessage().equals(other.getEventMessage())) return false;
if (hasPayload() != other.hasPayload()) return false;
if (hasPayload()) {
if (!getPayload().equals(other.getPayload())) return false;
}
if (!getEventId().equals(other.getEventId())) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + EVENT_MESSAGE_FIELD_NUMBER;
hash = (53 * hash) + getEventMessage().hashCode();
if (hasPayload()) {
hash = (37 * hash) + PAYLOAD_FIELD_NUMBER;
hash = (53 * hash) + getPayload().hashCode();
}
hash = (37 * hash) + EVENT_ID_FIELD_NUMBER;
hash = (53 * hash) + getEventId().hashCode();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.visionai.v1.AppPlatformEventBody parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.visionai.v1.AppPlatformEventBody 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.visionai.v1.AppPlatformEventBody parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.visionai.v1.AppPlatformEventBody 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.visionai.v1.AppPlatformEventBody parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.visionai.v1.AppPlatformEventBody parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.visionai.v1.AppPlatformEventBody parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.visionai.v1.AppPlatformEventBody 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.visionai.v1.AppPlatformEventBody parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.visionai.v1.AppPlatformEventBody 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.visionai.v1.AppPlatformEventBody parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.visionai.v1.AppPlatformEventBody 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.visionai.v1.AppPlatformEventBody prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Message of content of appPlatform event
*
*
* Protobuf type {@code google.cloud.visionai.v1.AppPlatformEventBody}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.visionai.v1.AppPlatformEventBody)
com.google.cloud.visionai.v1.AppPlatformEventBodyOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.visionai.v1.AnnotationsProto
.internal_static_google_cloud_visionai_v1_AppPlatformEventBody_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.visionai.v1.AnnotationsProto
.internal_static_google_cloud_visionai_v1_AppPlatformEventBody_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.visionai.v1.AppPlatformEventBody.class,
com.google.cloud.visionai.v1.AppPlatformEventBody.Builder.class);
}
// Construct using com.google.cloud.visionai.v1.AppPlatformEventBody.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getPayloadFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
eventMessage_ = "";
payload_ = null;
if (payloadBuilder_ != null) {
payloadBuilder_.dispose();
payloadBuilder_ = null;
}
eventId_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.visionai.v1.AnnotationsProto
.internal_static_google_cloud_visionai_v1_AppPlatformEventBody_descriptor;
}
@java.lang.Override
public com.google.cloud.visionai.v1.AppPlatformEventBody getDefaultInstanceForType() {
return com.google.cloud.visionai.v1.AppPlatformEventBody.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.visionai.v1.AppPlatformEventBody build() {
com.google.cloud.visionai.v1.AppPlatformEventBody result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.visionai.v1.AppPlatformEventBody buildPartial() {
com.google.cloud.visionai.v1.AppPlatformEventBody result =
new com.google.cloud.visionai.v1.AppPlatformEventBody(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(com.google.cloud.visionai.v1.AppPlatformEventBody result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.eventMessage_ = eventMessage_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000002) != 0)) {
result.payload_ = payloadBuilder_ == null ? payload_ : payloadBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.eventId_ = eventId_;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.cloud.visionai.v1.AppPlatformEventBody) {
return mergeFrom((com.google.cloud.visionai.v1.AppPlatformEventBody) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.visionai.v1.AppPlatformEventBody other) {
if (other == com.google.cloud.visionai.v1.AppPlatformEventBody.getDefaultInstance())
return this;
if (!other.getEventMessage().isEmpty()) {
eventMessage_ = other.eventMessage_;
bitField0_ |= 0x00000001;
onChanged();
}
if (other.hasPayload()) {
mergePayload(other.getPayload());
}
if (!other.getEventId().isEmpty()) {
eventId_ = other.eventId_;
bitField0_ |= 0x00000004;
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
eventMessage_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18:
{
input.readMessage(getPayloadFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 18
case 26:
{
eventId_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000004;
break;
} // case 26
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object eventMessage_ = "";
/**
*
*
*
* Human readable string of the event like "There are more than 6 people in
* the scene". or "Shelf is empty!".
*
*
* string event_message = 1;
*
* @return The eventMessage.
*/
public java.lang.String getEventMessage() {
java.lang.Object ref = eventMessage_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
eventMessage_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Human readable string of the event like "There are more than 6 people in
* the scene". or "Shelf is empty!".
*
*
* string event_message = 1;
*
* @return The bytes for eventMessage.
*/
public com.google.protobuf.ByteString getEventMessageBytes() {
java.lang.Object ref = eventMessage_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
eventMessage_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Human readable string of the event like "There are more than 6 people in
* the scene". or "Shelf is empty!".
*
*
* string event_message = 1;
*
* @param value The eventMessage to set.
* @return This builder for chaining.
*/
public Builder setEventMessage(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
eventMessage_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Human readable string of the event like "There are more than 6 people in
* the scene". or "Shelf is empty!".
*
*
* string event_message = 1;
*
* @return This builder for chaining.
*/
public Builder clearEventMessage() {
eventMessage_ = getDefaultInstance().getEventMessage();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* Human readable string of the event like "There are more than 6 people in
* the scene". or "Shelf is empty!".
*
*
* string event_message = 1;
*
* @param value The bytes for eventMessage to set.
* @return This builder for chaining.
*/
public Builder setEventMessageBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
eventMessage_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private com.google.protobuf.Struct payload_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Struct,
com.google.protobuf.Struct.Builder,
com.google.protobuf.StructOrBuilder>
payloadBuilder_;
/**
*
*
*
* For the case of Pub/Sub, it will be stored in the message attributes.
* pubsub.proto
*
*
* .google.protobuf.Struct payload = 2;
*
* @return Whether the payload field is set.
*/
public boolean hasPayload() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* For the case of Pub/Sub, it will be stored in the message attributes.
* pubsub.proto
*
*
* .google.protobuf.Struct payload = 2;
*
* @return The payload.
*/
public com.google.protobuf.Struct getPayload() {
if (payloadBuilder_ == null) {
return payload_ == null ? com.google.protobuf.Struct.getDefaultInstance() : payload_;
} else {
return payloadBuilder_.getMessage();
}
}
/**
*
*
*
* For the case of Pub/Sub, it will be stored in the message attributes.
* pubsub.proto
*
*
* .google.protobuf.Struct payload = 2;
*/
public Builder setPayload(com.google.protobuf.Struct value) {
if (payloadBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
payload_ = value;
} else {
payloadBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* For the case of Pub/Sub, it will be stored in the message attributes.
* pubsub.proto
*
*
* .google.protobuf.Struct payload = 2;
*/
public Builder setPayload(com.google.protobuf.Struct.Builder builderForValue) {
if (payloadBuilder_ == null) {
payload_ = builderForValue.build();
} else {
payloadBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* For the case of Pub/Sub, it will be stored in the message attributes.
* pubsub.proto
*
*
* .google.protobuf.Struct payload = 2;
*/
public Builder mergePayload(com.google.protobuf.Struct value) {
if (payloadBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)
&& payload_ != null
&& payload_ != com.google.protobuf.Struct.getDefaultInstance()) {
getPayloadBuilder().mergeFrom(value);
} else {
payload_ = value;
}
} else {
payloadBuilder_.mergeFrom(value);
}
if (payload_ != null) {
bitField0_ |= 0x00000002;
onChanged();
}
return this;
}
/**
*
*
*
* For the case of Pub/Sub, it will be stored in the message attributes.
* pubsub.proto
*
*
* .google.protobuf.Struct payload = 2;
*/
public Builder clearPayload() {
bitField0_ = (bitField0_ & ~0x00000002);
payload_ = null;
if (payloadBuilder_ != null) {
payloadBuilder_.dispose();
payloadBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* For the case of Pub/Sub, it will be stored in the message attributes.
* pubsub.proto
*
*
* .google.protobuf.Struct payload = 2;
*/
public com.google.protobuf.Struct.Builder getPayloadBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getPayloadFieldBuilder().getBuilder();
}
/**
*
*
*
* For the case of Pub/Sub, it will be stored in the message attributes.
* pubsub.proto
*
*
* .google.protobuf.Struct payload = 2;
*/
public com.google.protobuf.StructOrBuilder getPayloadOrBuilder() {
if (payloadBuilder_ != null) {
return payloadBuilder_.getMessageOrBuilder();
} else {
return payload_ == null ? com.google.protobuf.Struct.getDefaultInstance() : payload_;
}
}
/**
*
*
*
* For the case of Pub/Sub, it will be stored in the message attributes.
* pubsub.proto
*
*
* .google.protobuf.Struct payload = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Struct,
com.google.protobuf.Struct.Builder,
com.google.protobuf.StructOrBuilder>
getPayloadFieldBuilder() {
if (payloadBuilder_ == null) {
payloadBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Struct,
com.google.protobuf.Struct.Builder,
com.google.protobuf.StructOrBuilder>(
getPayload(), getParentForChildren(), isClean());
payload_ = null;
}
return payloadBuilder_;
}
private java.lang.Object eventId_ = "";
/**
*
*
*
* User defined Event Id, used to classify event, within a delivery interval,
* events from the same application instance with the same id will be
* de-duplicated & only first one will be sent out. Empty event_id will be
* treated as "".
*
*
* string event_id = 3;
*
* @return The eventId.
*/
public java.lang.String getEventId() {
java.lang.Object ref = eventId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
eventId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* User defined Event Id, used to classify event, within a delivery interval,
* events from the same application instance with the same id will be
* de-duplicated & only first one will be sent out. Empty event_id will be
* treated as "".
*
*
* string event_id = 3;
*
* @return The bytes for eventId.
*/
public com.google.protobuf.ByteString getEventIdBytes() {
java.lang.Object ref = eventId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
eventId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* User defined Event Id, used to classify event, within a delivery interval,
* events from the same application instance with the same id will be
* de-duplicated & only first one will be sent out. Empty event_id will be
* treated as "".
*
*
* string event_id = 3;
*
* @param value The eventId to set.
* @return This builder for chaining.
*/
public Builder setEventId(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
eventId_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* User defined Event Id, used to classify event, within a delivery interval,
* events from the same application instance with the same id will be
* de-duplicated & only first one will be sent out. Empty event_id will be
* treated as "".
*
*
* string event_id = 3;
*
* @return This builder for chaining.
*/
public Builder clearEventId() {
eventId_ = getDefaultInstance().getEventId();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
return this;
}
/**
*
*
*
* User defined Event Id, used to classify event, within a delivery interval,
* events from the same application instance with the same id will be
* de-duplicated & only first one will be sent out. Empty event_id will be
* treated as "".
*
*
* string event_id = 3;
*
* @param value The bytes for eventId to set.
* @return This builder for chaining.
*/
public Builder setEventIdBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
eventId_ = value;
bitField0_ |= 0x00000004;
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.visionai.v1.AppPlatformEventBody)
}
// @@protoc_insertion_point(class_scope:google.cloud.visionai.v1.AppPlatformEventBody)
private static final com.google.cloud.visionai.v1.AppPlatformEventBody DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.visionai.v1.AppPlatformEventBody();
}
public static com.google.cloud.visionai.v1.AppPlatformEventBody getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public AppPlatformEventBody 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.visionai.v1.AppPlatformEventBody getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy