com.google.cloud.datastream.v1.SourceObjectIdentifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-datastream-v1 Show documentation
Show all versions of proto-google-cloud-datastream-v1 Show documentation
Proto library for google-cloud-datastream
/*
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/datastream/v1/datastream_resources.proto
package com.google.cloud.datastream.v1;
/**
*
*
*
* Represents an identifier of an object in the data source.
*
*
* Protobuf type {@code google.cloud.datastream.v1.SourceObjectIdentifier}
*/
public final class SourceObjectIdentifier extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.datastream.v1.SourceObjectIdentifier)
SourceObjectIdentifierOrBuilder {
private static final long serialVersionUID = 0L;
// Use SourceObjectIdentifier.newBuilder() to construct.
private SourceObjectIdentifier(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private SourceObjectIdentifier() {}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new SourceObjectIdentifier();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
}
private SourceObjectIdentifier(
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:
{
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier.Builder
subBuilder = null;
if (sourceIdentifierCase_ == 1) {
subBuilder =
((com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)
sourceIdentifier_)
.toBuilder();
}
sourceIdentifier_ =
input.readMessage(
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
.parser(),
extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(
(com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)
sourceIdentifier_);
sourceIdentifier_ = subBuilder.buildPartial();
}
sourceIdentifierCase_ = 1;
break;
}
case 18:
{
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier.Builder
subBuilder = null;
if (sourceIdentifierCase_ == 2) {
subBuilder =
((com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)
sourceIdentifier_)
.toBuilder();
}
sourceIdentifier_ =
input.readMessage(
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
.parser(),
extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(
(com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)
sourceIdentifier_);
sourceIdentifier_ = subBuilder.buildPartial();
}
sourceIdentifierCase_ = 2;
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 com.google.cloud.datastream.v1.DatastreamResourcesProto
.internal_static_google_cloud_datastream_v1_SourceObjectIdentifier_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.datastream.v1.DatastreamResourcesProto
.internal_static_google_cloud_datastream_v1_SourceObjectIdentifier_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.datastream.v1.SourceObjectIdentifier.class,
com.google.cloud.datastream.v1.SourceObjectIdentifier.Builder.class);
}
public interface OracleObjectIdentifierOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. The schema name.
*
*
* string schema = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The schema.
*/
java.lang.String getSchema();
/**
*
*
*
* Required. The schema name.
*
*
* string schema = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for schema.
*/
com.google.protobuf.ByteString getSchemaBytes();
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The table.
*/
java.lang.String getTable();
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for table.
*/
com.google.protobuf.ByteString getTableBytes();
}
/**
*
*
*
* Oracle data source object identifier.
*
*
* Protobuf type {@code google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier}
*/
public static final class OracleObjectIdentifier extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)
OracleObjectIdentifierOrBuilder {
private static final long serialVersionUID = 0L;
// Use OracleObjectIdentifier.newBuilder() to construct.
private OracleObjectIdentifier(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private OracleObjectIdentifier() {
schema_ = "";
table_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new OracleObjectIdentifier();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
}
private OracleObjectIdentifier(
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();
schema_ = s;
break;
}
case 18:
{
java.lang.String s = input.readStringRequireUtf8();
table_ = s;
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 com.google.cloud.datastream.v1.DatastreamResourcesProto
.internal_static_google_cloud_datastream_v1_SourceObjectIdentifier_OracleObjectIdentifier_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.datastream.v1.DatastreamResourcesProto
.internal_static_google_cloud_datastream_v1_SourceObjectIdentifier_OracleObjectIdentifier_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier.class,
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier.Builder
.class);
}
public static final int SCHEMA_FIELD_NUMBER = 1;
private volatile java.lang.Object schema_;
/**
*
*
*
* Required. The schema name.
*
*
* string schema = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The schema.
*/
@java.lang.Override
public java.lang.String getSchema() {
java.lang.Object ref = schema_;
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();
schema_ = s;
return s;
}
}
/**
*
*
*
* Required. The schema name.
*
*
* string schema = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for schema.
*/
@java.lang.Override
public com.google.protobuf.ByteString getSchemaBytes() {
java.lang.Object ref = schema_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
schema_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int TABLE_FIELD_NUMBER = 2;
private volatile java.lang.Object table_;
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The table.
*/
@java.lang.Override
public java.lang.String getTable() {
java.lang.Object ref = table_;
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();
table_ = s;
return s;
}
}
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for table.
*/
@java.lang.Override
public com.google.protobuf.ByteString getTableBytes() {
java.lang.Object ref = table_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
table_ = 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(schema_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, schema_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(table_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, table_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(schema_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, schema_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(table_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, table_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj
instanceof
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)) {
return super.equals(obj);
}
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier other =
(com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier) obj;
if (!getSchema().equals(other.getSchema())) return false;
if (!getTable().equals(other.getTable())) 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) + SCHEMA_FIELD_NUMBER;
hash = (53 * hash) + getSchema().hashCode();
hash = (37 * hash) + TABLE_FIELD_NUMBER;
hash = (53 * hash) + getTable().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
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.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
parseFrom(com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
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.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
parseFrom(java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
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.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
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.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
parseFrom(com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
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.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier 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;
}
/**
*
*
*
* Oracle data source object identifier.
*
*
* Protobuf type {@code
* google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier}
*/
public static final class Builder
extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifierOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.datastream.v1.DatastreamResourcesProto
.internal_static_google_cloud_datastream_v1_SourceObjectIdentifier_OracleObjectIdentifier_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.datastream.v1.DatastreamResourcesProto
.internal_static_google_cloud_datastream_v1_SourceObjectIdentifier_OracleObjectIdentifier_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier.class,
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier.Builder
.class);
}
// Construct using
// com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier.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();
schema_ = "";
table_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.datastream.v1.DatastreamResourcesProto
.internal_static_google_cloud_datastream_v1_SourceObjectIdentifier_OracleObjectIdentifier_descriptor;
}
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
getDefaultInstanceForType() {
return com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier build() {
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier result =
buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
buildPartial() {
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier result =
new com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier(this);
result.schema_ = schema_;
result.table_ = table_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index,
java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other
instanceof
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier) {
return mergeFrom(
(com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier other) {
if (other
== com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
.getDefaultInstance()) return this;
if (!other.getSchema().isEmpty()) {
schema_ = other.schema_;
onChanged();
}
if (!other.getTable().isEmpty()) {
table_ = other.table_;
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier parsedMessage =
null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage =
(com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)
e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object schema_ = "";
/**
*
*
*
* Required. The schema name.
*
*
* string schema = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The schema.
*/
public java.lang.String getSchema() {
java.lang.Object ref = schema_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
schema_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Required. The schema name.
*
*
* string schema = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for schema.
*/
public com.google.protobuf.ByteString getSchemaBytes() {
java.lang.Object ref = schema_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
schema_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Required. The schema name.
*
*
* string schema = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The schema to set.
* @return This builder for chaining.
*/
public Builder setSchema(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
schema_ = value;
onChanged();
return this;
}
/**
*
*
*
* Required. The schema name.
*
*
* string schema = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return This builder for chaining.
*/
public Builder clearSchema() {
schema_ = getDefaultInstance().getSchema();
onChanged();
return this;
}
/**
*
*
*
* Required. The schema name.
*
*
* string schema = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The bytes for schema to set.
* @return This builder for chaining.
*/
public Builder setSchemaBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
schema_ = value;
onChanged();
return this;
}
private java.lang.Object table_ = "";
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The table.
*/
public java.lang.String getTable() {
java.lang.Object ref = table_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
table_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for table.
*/
public com.google.protobuf.ByteString getTableBytes() {
java.lang.Object ref = table_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
table_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The table to set.
* @return This builder for chaining.
*/
public Builder setTable(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
table_ = value;
onChanged();
return this;
}
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return This builder for chaining.
*/
public Builder clearTable() {
table_ = getDefaultInstance().getTable();
onChanged();
return this;
}
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The bytes for table to set.
* @return This builder for chaining.
*/
public Builder setTableBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
table_ = 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.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)
}
// @@protoc_insertion_point(class_scope:google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)
private static final com.google.cloud.datastream.v1.SourceObjectIdentifier
.OracleObjectIdentifier
DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE =
new com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier();
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public OracleObjectIdentifier parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new OracleObjectIdentifier(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface MysqlObjectIdentifierOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. The database name.
*
*
* string database = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The database.
*/
java.lang.String getDatabase();
/**
*
*
*
* Required. The database name.
*
*
* string database = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for database.
*/
com.google.protobuf.ByteString getDatabaseBytes();
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The table.
*/
java.lang.String getTable();
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for table.
*/
com.google.protobuf.ByteString getTableBytes();
}
/**
*
*
*
* Mysql data source object identifier.
*
*
* Protobuf type {@code google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier}
*/
public static final class MysqlObjectIdentifier extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)
MysqlObjectIdentifierOrBuilder {
private static final long serialVersionUID = 0L;
// Use MysqlObjectIdentifier.newBuilder() to construct.
private MysqlObjectIdentifier(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private MysqlObjectIdentifier() {
database_ = "";
table_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new MysqlObjectIdentifier();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
}
private MysqlObjectIdentifier(
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();
database_ = s;
break;
}
case 18:
{
java.lang.String s = input.readStringRequireUtf8();
table_ = s;
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 com.google.cloud.datastream.v1.DatastreamResourcesProto
.internal_static_google_cloud_datastream_v1_SourceObjectIdentifier_MysqlObjectIdentifier_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.datastream.v1.DatastreamResourcesProto
.internal_static_google_cloud_datastream_v1_SourceObjectIdentifier_MysqlObjectIdentifier_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier.class,
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier.Builder
.class);
}
public static final int DATABASE_FIELD_NUMBER = 1;
private volatile java.lang.Object database_;
/**
*
*
*
* Required. The database name.
*
*
* string database = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The database.
*/
@java.lang.Override
public java.lang.String getDatabase() {
java.lang.Object ref = database_;
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();
database_ = s;
return s;
}
}
/**
*
*
*
* Required. The database name.
*
*
* string database = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for database.
*/
@java.lang.Override
public com.google.protobuf.ByteString getDatabaseBytes() {
java.lang.Object ref = database_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
database_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int TABLE_FIELD_NUMBER = 2;
private volatile java.lang.Object table_;
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The table.
*/
@java.lang.Override
public java.lang.String getTable() {
java.lang.Object ref = table_;
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();
table_ = s;
return s;
}
}
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for table.
*/
@java.lang.Override
public com.google.protobuf.ByteString getTableBytes() {
java.lang.Object ref = table_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
table_ = 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(database_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, database_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(table_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, table_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(database_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, database_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(table_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, table_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj
instanceof com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)) {
return super.equals(obj);
}
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier other =
(com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier) obj;
if (!getDatabase().equals(other.getDatabase())) return false;
if (!getTable().equals(other.getTable())) 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) + DATABASE_FIELD_NUMBER;
hash = (53 * hash) + getDatabase().hashCode();
hash = (37 * hash) + TABLE_FIELD_NUMBER;
hash = (53 * hash) + getTable().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
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.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
parseFrom(com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
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.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
parseFrom(java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
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.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
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.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
parseFrom(com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
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.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier 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;
}
/**
*
*
*
* Mysql data source object identifier.
*
*
* Protobuf type {@code google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier}
*/
public static final class Builder
extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifierOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.datastream.v1.DatastreamResourcesProto
.internal_static_google_cloud_datastream_v1_SourceObjectIdentifier_MysqlObjectIdentifier_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.datastream.v1.DatastreamResourcesProto
.internal_static_google_cloud_datastream_v1_SourceObjectIdentifier_MysqlObjectIdentifier_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier.class,
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier.Builder
.class);
}
// Construct using
// com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier.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();
database_ = "";
table_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.datastream.v1.DatastreamResourcesProto
.internal_static_google_cloud_datastream_v1_SourceObjectIdentifier_MysqlObjectIdentifier_descriptor;
}
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
getDefaultInstanceForType() {
return com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier build() {
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier result =
buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
buildPartial() {
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier result =
new com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier(this);
result.database_ = database_;
result.table_ = table_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index,
java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other
instanceof
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier) {
return mergeFrom(
(com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier other) {
if (other
== com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
.getDefaultInstance()) return this;
if (!other.getDatabase().isEmpty()) {
database_ = other.database_;
onChanged();
}
if (!other.getTable().isEmpty()) {
table_ = other.table_;
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier parsedMessage =
null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage =
(com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)
e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object database_ = "";
/**
*
*
*
* Required. The database name.
*
*
* string database = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The database.
*/
public java.lang.String getDatabase() {
java.lang.Object ref = database_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
database_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Required. The database name.
*
*
* string database = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for database.
*/
public com.google.protobuf.ByteString getDatabaseBytes() {
java.lang.Object ref = database_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
database_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Required. The database name.
*
*
* string database = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The database to set.
* @return This builder for chaining.
*/
public Builder setDatabase(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
database_ = value;
onChanged();
return this;
}
/**
*
*
*
* Required. The database name.
*
*
* string database = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return This builder for chaining.
*/
public Builder clearDatabase() {
database_ = getDefaultInstance().getDatabase();
onChanged();
return this;
}
/**
*
*
*
* Required. The database name.
*
*
* string database = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The bytes for database to set.
* @return This builder for chaining.
*/
public Builder setDatabaseBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
database_ = value;
onChanged();
return this;
}
private java.lang.Object table_ = "";
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The table.
*/
public java.lang.String getTable() {
java.lang.Object ref = table_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
table_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for table.
*/
public com.google.protobuf.ByteString getTableBytes() {
java.lang.Object ref = table_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
table_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The table to set.
* @return This builder for chaining.
*/
public Builder setTable(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
table_ = value;
onChanged();
return this;
}
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return This builder for chaining.
*/
public Builder clearTable() {
table_ = getDefaultInstance().getTable();
onChanged();
return this;
}
/**
*
*
*
* Required. The table name.
*
*
* string table = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The bytes for table to set.
* @return This builder for chaining.
*/
public Builder setTableBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
table_ = 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.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)
}
// @@protoc_insertion_point(class_scope:google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)
private static final com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE =
new com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier();
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public MysqlObjectIdentifier parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new MysqlObjectIdentifier(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private int sourceIdentifierCase_ = 0;
private java.lang.Object sourceIdentifier_;
public enum SourceIdentifierCase
implements
com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
ORACLE_IDENTIFIER(1),
MYSQL_IDENTIFIER(2),
SOURCEIDENTIFIER_NOT_SET(0);
private final int value;
private SourceIdentifierCase(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 SourceIdentifierCase valueOf(int value) {
return forNumber(value);
}
public static SourceIdentifierCase forNumber(int value) {
switch (value) {
case 1:
return ORACLE_IDENTIFIER;
case 2:
return MYSQL_IDENTIFIER;
case 0:
return SOURCEIDENTIFIER_NOT_SET;
default:
return null;
}
}
public int getNumber() {
return this.value;
}
};
public SourceIdentifierCase getSourceIdentifierCase() {
return SourceIdentifierCase.forNumber(sourceIdentifierCase_);
}
public static final int ORACLE_IDENTIFIER_FIELD_NUMBER = 1;
/**
*
*
*
* Oracle data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier oracle_identifier = 1;
*
*
* @return Whether the oracleIdentifier field is set.
*/
@java.lang.Override
public boolean hasOracleIdentifier() {
return sourceIdentifierCase_ == 1;
}
/**
*
*
*
* Oracle data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier oracle_identifier = 1;
*
*
* @return The oracleIdentifier.
*/
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
getOracleIdentifier() {
if (sourceIdentifierCase_ == 1) {
return (com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)
sourceIdentifier_;
}
return com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
.getDefaultInstance();
}
/**
*
*
*
* Oracle data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier oracle_identifier = 1;
*
*/
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifierOrBuilder
getOracleIdentifierOrBuilder() {
if (sourceIdentifierCase_ == 1) {
return (com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)
sourceIdentifier_;
}
return com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
.getDefaultInstance();
}
public static final int MYSQL_IDENTIFIER_FIELD_NUMBER = 2;
/**
*
*
*
* Mysql data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier mysql_identifier = 2;
*
*
* @return Whether the mysqlIdentifier field is set.
*/
@java.lang.Override
public boolean hasMysqlIdentifier() {
return sourceIdentifierCase_ == 2;
}
/**
*
*
*
* Mysql data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier mysql_identifier = 2;
*
*
* @return The mysqlIdentifier.
*/
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
getMysqlIdentifier() {
if (sourceIdentifierCase_ == 2) {
return (com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)
sourceIdentifier_;
}
return com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
.getDefaultInstance();
}
/**
*
*
*
* Mysql data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier mysql_identifier = 2;
*
*/
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifierOrBuilder
getMysqlIdentifierOrBuilder() {
if (sourceIdentifierCase_ == 2) {
return (com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)
sourceIdentifier_;
}
return com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
.getDefaultInstance();
}
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 (sourceIdentifierCase_ == 1) {
output.writeMessage(
1,
(com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)
sourceIdentifier_);
}
if (sourceIdentifierCase_ == 2) {
output.writeMessage(
2,
(com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)
sourceIdentifier_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (sourceIdentifierCase_ == 1) {
size +=
com.google.protobuf.CodedOutputStream.computeMessageSize(
1,
(com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)
sourceIdentifier_);
}
if (sourceIdentifierCase_ == 2) {
size +=
com.google.protobuf.CodedOutputStream.computeMessageSize(
2,
(com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)
sourceIdentifier_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.cloud.datastream.v1.SourceObjectIdentifier)) {
return super.equals(obj);
}
com.google.cloud.datastream.v1.SourceObjectIdentifier other =
(com.google.cloud.datastream.v1.SourceObjectIdentifier) obj;
if (!getSourceIdentifierCase().equals(other.getSourceIdentifierCase())) return false;
switch (sourceIdentifierCase_) {
case 1:
if (!getOracleIdentifier().equals(other.getOracleIdentifier())) return false;
break;
case 2:
if (!getMysqlIdentifier().equals(other.getMysqlIdentifier())) return false;
break;
case 0:
default:
}
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();
switch (sourceIdentifierCase_) {
case 1:
hash = (37 * hash) + ORACLE_IDENTIFIER_FIELD_NUMBER;
hash = (53 * hash) + getOracleIdentifier().hashCode();
break;
case 2:
hash = (37 * hash) + MYSQL_IDENTIFIER_FIELD_NUMBER;
hash = (53 * hash) + getMysqlIdentifier().hashCode();
break;
case 0:
default:
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier 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.datastream.v1.SourceObjectIdentifier parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier 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.datastream.v1.SourceObjectIdentifier parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier 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.datastream.v1.SourceObjectIdentifier parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier 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.datastream.v1.SourceObjectIdentifier parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier 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.datastream.v1.SourceObjectIdentifier 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;
}
/**
*
*
*
* Represents an identifier of an object in the data source.
*
*
* Protobuf type {@code google.cloud.datastream.v1.SourceObjectIdentifier}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.datastream.v1.SourceObjectIdentifier)
com.google.cloud.datastream.v1.SourceObjectIdentifierOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.datastream.v1.DatastreamResourcesProto
.internal_static_google_cloud_datastream_v1_SourceObjectIdentifier_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.datastream.v1.DatastreamResourcesProto
.internal_static_google_cloud_datastream_v1_SourceObjectIdentifier_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.datastream.v1.SourceObjectIdentifier.class,
com.google.cloud.datastream.v1.SourceObjectIdentifier.Builder.class);
}
// Construct using com.google.cloud.datastream.v1.SourceObjectIdentifier.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();
sourceIdentifierCase_ = 0;
sourceIdentifier_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.datastream.v1.DatastreamResourcesProto
.internal_static_google_cloud_datastream_v1_SourceObjectIdentifier_descriptor;
}
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier getDefaultInstanceForType() {
return com.google.cloud.datastream.v1.SourceObjectIdentifier.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier build() {
com.google.cloud.datastream.v1.SourceObjectIdentifier result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier buildPartial() {
com.google.cloud.datastream.v1.SourceObjectIdentifier result =
new com.google.cloud.datastream.v1.SourceObjectIdentifier(this);
if (sourceIdentifierCase_ == 1) {
if (oracleIdentifierBuilder_ == null) {
result.sourceIdentifier_ = sourceIdentifier_;
} else {
result.sourceIdentifier_ = oracleIdentifierBuilder_.build();
}
}
if (sourceIdentifierCase_ == 2) {
if (mysqlIdentifierBuilder_ == null) {
result.sourceIdentifier_ = sourceIdentifier_;
} else {
result.sourceIdentifier_ = mysqlIdentifierBuilder_.build();
}
}
result.sourceIdentifierCase_ = sourceIdentifierCase_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.cloud.datastream.v1.SourceObjectIdentifier) {
return mergeFrom((com.google.cloud.datastream.v1.SourceObjectIdentifier) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.datastream.v1.SourceObjectIdentifier other) {
if (other == com.google.cloud.datastream.v1.SourceObjectIdentifier.getDefaultInstance())
return this;
switch (other.getSourceIdentifierCase()) {
case ORACLE_IDENTIFIER:
{
mergeOracleIdentifier(other.getOracleIdentifier());
break;
}
case MYSQL_IDENTIFIER:
{
mergeMysqlIdentifier(other.getMysqlIdentifier());
break;
}
case SOURCEIDENTIFIER_NOT_SET:
{
break;
}
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.google.cloud.datastream.v1.SourceObjectIdentifier parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage =
(com.google.cloud.datastream.v1.SourceObjectIdentifier) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int sourceIdentifierCase_ = 0;
private java.lang.Object sourceIdentifier_;
public SourceIdentifierCase getSourceIdentifierCase() {
return SourceIdentifierCase.forNumber(sourceIdentifierCase_);
}
public Builder clearSourceIdentifier() {
sourceIdentifierCase_ = 0;
sourceIdentifier_ = null;
onChanged();
return this;
}
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier,
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier.Builder,
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifierOrBuilder>
oracleIdentifierBuilder_;
/**
*
*
*
* Oracle data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier oracle_identifier = 1;
*
*
* @return Whether the oracleIdentifier field is set.
*/
@java.lang.Override
public boolean hasOracleIdentifier() {
return sourceIdentifierCase_ == 1;
}
/**
*
*
*
* Oracle data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier oracle_identifier = 1;
*
*
* @return The oracleIdentifier.
*/
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
getOracleIdentifier() {
if (oracleIdentifierBuilder_ == null) {
if (sourceIdentifierCase_ == 1) {
return (com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)
sourceIdentifier_;
}
return com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
.getDefaultInstance();
} else {
if (sourceIdentifierCase_ == 1) {
return oracleIdentifierBuilder_.getMessage();
}
return com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
.getDefaultInstance();
}
}
/**
*
*
*
* Oracle data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier oracle_identifier = 1;
*
*/
public Builder setOracleIdentifier(
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier value) {
if (oracleIdentifierBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
sourceIdentifier_ = value;
onChanged();
} else {
oracleIdentifierBuilder_.setMessage(value);
}
sourceIdentifierCase_ = 1;
return this;
}
/**
*
*
*
* Oracle data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier oracle_identifier = 1;
*
*/
public Builder setOracleIdentifier(
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier.Builder
builderForValue) {
if (oracleIdentifierBuilder_ == null) {
sourceIdentifier_ = builderForValue.build();
onChanged();
} else {
oracleIdentifierBuilder_.setMessage(builderForValue.build());
}
sourceIdentifierCase_ = 1;
return this;
}
/**
*
*
*
* Oracle data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier oracle_identifier = 1;
*
*/
public Builder mergeOracleIdentifier(
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier value) {
if (oracleIdentifierBuilder_ == null) {
if (sourceIdentifierCase_ == 1
&& sourceIdentifier_
!= com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
.getDefaultInstance()) {
sourceIdentifier_ =
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
.newBuilder(
(com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)
sourceIdentifier_)
.mergeFrom(value)
.buildPartial();
} else {
sourceIdentifier_ = value;
}
onChanged();
} else {
if (sourceIdentifierCase_ == 1) {
oracleIdentifierBuilder_.mergeFrom(value);
}
oracleIdentifierBuilder_.setMessage(value);
}
sourceIdentifierCase_ = 1;
return this;
}
/**
*
*
*
* Oracle data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier oracle_identifier = 1;
*
*/
public Builder clearOracleIdentifier() {
if (oracleIdentifierBuilder_ == null) {
if (sourceIdentifierCase_ == 1) {
sourceIdentifierCase_ = 0;
sourceIdentifier_ = null;
onChanged();
}
} else {
if (sourceIdentifierCase_ == 1) {
sourceIdentifierCase_ = 0;
sourceIdentifier_ = null;
}
oracleIdentifierBuilder_.clear();
}
return this;
}
/**
*
*
*
* Oracle data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier oracle_identifier = 1;
*
*/
public com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier.Builder
getOracleIdentifierBuilder() {
return getOracleIdentifierFieldBuilder().getBuilder();
}
/**
*
*
*
* Oracle data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier oracle_identifier = 1;
*
*/
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifierOrBuilder
getOracleIdentifierOrBuilder() {
if ((sourceIdentifierCase_ == 1) && (oracleIdentifierBuilder_ != null)) {
return oracleIdentifierBuilder_.getMessageOrBuilder();
} else {
if (sourceIdentifierCase_ == 1) {
return (com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)
sourceIdentifier_;
}
return com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
.getDefaultInstance();
}
}
/**
*
*
*
* Oracle data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier oracle_identifier = 1;
*
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier,
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier.Builder,
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifierOrBuilder>
getOracleIdentifierFieldBuilder() {
if (oracleIdentifierBuilder_ == null) {
if (!(sourceIdentifierCase_ == 1)) {
sourceIdentifier_ =
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
.getDefaultInstance();
}
oracleIdentifierBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier,
com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier
.Builder,
com.google.cloud.datastream.v1.SourceObjectIdentifier
.OracleObjectIdentifierOrBuilder>(
(com.google.cloud.datastream.v1.SourceObjectIdentifier.OracleObjectIdentifier)
sourceIdentifier_,
getParentForChildren(),
isClean());
sourceIdentifier_ = null;
}
sourceIdentifierCase_ = 1;
onChanged();
;
return oracleIdentifierBuilder_;
}
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier,
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier.Builder,
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifierOrBuilder>
mysqlIdentifierBuilder_;
/**
*
*
*
* Mysql data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier mysql_identifier = 2;
*
*
* @return Whether the mysqlIdentifier field is set.
*/
@java.lang.Override
public boolean hasMysqlIdentifier() {
return sourceIdentifierCase_ == 2;
}
/**
*
*
*
* Mysql data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier mysql_identifier = 2;
*
*
* @return The mysqlIdentifier.
*/
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
getMysqlIdentifier() {
if (mysqlIdentifierBuilder_ == null) {
if (sourceIdentifierCase_ == 2) {
return (com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)
sourceIdentifier_;
}
return com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
.getDefaultInstance();
} else {
if (sourceIdentifierCase_ == 2) {
return mysqlIdentifierBuilder_.getMessage();
}
return com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
.getDefaultInstance();
}
}
/**
*
*
*
* Mysql data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier mysql_identifier = 2;
*
*/
public Builder setMysqlIdentifier(
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier value) {
if (mysqlIdentifierBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
sourceIdentifier_ = value;
onChanged();
} else {
mysqlIdentifierBuilder_.setMessage(value);
}
sourceIdentifierCase_ = 2;
return this;
}
/**
*
*
*
* Mysql data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier mysql_identifier = 2;
*
*/
public Builder setMysqlIdentifier(
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier.Builder
builderForValue) {
if (mysqlIdentifierBuilder_ == null) {
sourceIdentifier_ = builderForValue.build();
onChanged();
} else {
mysqlIdentifierBuilder_.setMessage(builderForValue.build());
}
sourceIdentifierCase_ = 2;
return this;
}
/**
*
*
*
* Mysql data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier mysql_identifier = 2;
*
*/
public Builder mergeMysqlIdentifier(
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier value) {
if (mysqlIdentifierBuilder_ == null) {
if (sourceIdentifierCase_ == 2
&& sourceIdentifier_
!= com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
.getDefaultInstance()) {
sourceIdentifier_ =
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
.newBuilder(
(com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)
sourceIdentifier_)
.mergeFrom(value)
.buildPartial();
} else {
sourceIdentifier_ = value;
}
onChanged();
} else {
if (sourceIdentifierCase_ == 2) {
mysqlIdentifierBuilder_.mergeFrom(value);
}
mysqlIdentifierBuilder_.setMessage(value);
}
sourceIdentifierCase_ = 2;
return this;
}
/**
*
*
*
* Mysql data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier mysql_identifier = 2;
*
*/
public Builder clearMysqlIdentifier() {
if (mysqlIdentifierBuilder_ == null) {
if (sourceIdentifierCase_ == 2) {
sourceIdentifierCase_ = 0;
sourceIdentifier_ = null;
onChanged();
}
} else {
if (sourceIdentifierCase_ == 2) {
sourceIdentifierCase_ = 0;
sourceIdentifier_ = null;
}
mysqlIdentifierBuilder_.clear();
}
return this;
}
/**
*
*
*
* Mysql data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier mysql_identifier = 2;
*
*/
public com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier.Builder
getMysqlIdentifierBuilder() {
return getMysqlIdentifierFieldBuilder().getBuilder();
}
/**
*
*
*
* Mysql data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier mysql_identifier = 2;
*
*/
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifierOrBuilder
getMysqlIdentifierOrBuilder() {
if ((sourceIdentifierCase_ == 2) && (mysqlIdentifierBuilder_ != null)) {
return mysqlIdentifierBuilder_.getMessageOrBuilder();
} else {
if (sourceIdentifierCase_ == 2) {
return (com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)
sourceIdentifier_;
}
return com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
.getDefaultInstance();
}
}
/**
*
*
*
* Mysql data source object identifier.
*
*
*
* .google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier mysql_identifier = 2;
*
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier,
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier.Builder,
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifierOrBuilder>
getMysqlIdentifierFieldBuilder() {
if (mysqlIdentifierBuilder_ == null) {
if (!(sourceIdentifierCase_ == 2)) {
sourceIdentifier_ =
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier
.getDefaultInstance();
}
mysqlIdentifierBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier,
com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier.Builder,
com.google.cloud.datastream.v1.SourceObjectIdentifier
.MysqlObjectIdentifierOrBuilder>(
(com.google.cloud.datastream.v1.SourceObjectIdentifier.MysqlObjectIdentifier)
sourceIdentifier_,
getParentForChildren(),
isClean());
sourceIdentifier_ = null;
}
sourceIdentifierCase_ = 2;
onChanged();
;
return mysqlIdentifierBuilder_;
}
@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.datastream.v1.SourceObjectIdentifier)
}
// @@protoc_insertion_point(class_scope:google.cloud.datastream.v1.SourceObjectIdentifier)
private static final com.google.cloud.datastream.v1.SourceObjectIdentifier DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.datastream.v1.SourceObjectIdentifier();
}
public static com.google.cloud.datastream.v1.SourceObjectIdentifier getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public SourceObjectIdentifier parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new SourceObjectIdentifier(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.cloud.datastream.v1.SourceObjectIdentifier getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy