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

com.google.cloud.datastream.v1.OracleProfile Maven / Gradle / Ivy

There is a newer version: 1.53.0
Show newest version
/*
 * 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;

/**
 *
 *
 * 
 * Oracle database profile.
 * 
* * Protobuf type {@code google.cloud.datastream.v1.OracleProfile} */ public final class OracleProfile extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.datastream.v1.OracleProfile) OracleProfileOrBuilder { private static final long serialVersionUID = 0L; // Use OracleProfile.newBuilder() to construct. private OracleProfile(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private OracleProfile() { hostname_ = ""; username_ = ""; password_ = ""; databaseService_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new OracleProfile(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private OracleProfile( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } int mutable_bitField0_ = 0; 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(); hostname_ = s; break; } case 16: { port_ = input.readInt32(); break; } case 26: { java.lang.String s = input.readStringRequireUtf8(); username_ = s; break; } case 34: { java.lang.String s = input.readStringRequireUtf8(); password_ = s; break; } case 42: { java.lang.String s = input.readStringRequireUtf8(); databaseService_ = s; break; } case 50: { if (!((mutable_bitField0_ & 0x00000001) != 0)) { connectionAttributes_ = com.google.protobuf.MapField.newMapField( ConnectionAttributesDefaultEntryHolder.defaultEntry); mutable_bitField0_ |= 0x00000001; } com.google.protobuf.MapEntry connectionAttributes__ = input.readMessage( ConnectionAttributesDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry); connectionAttributes_ .getMutableMap() .put(connectionAttributes__.getKey(), connectionAttributes__.getValue()); 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_OracleProfile_descriptor; } @SuppressWarnings({"rawtypes"}) @java.lang.Override protected com.google.protobuf.MapField internalGetMapField(int number) { switch (number) { case 6: return internalGetConnectionAttributes(); default: throw new RuntimeException("Invalid map field number: " + number); } } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.datastream.v1.DatastreamResourcesProto .internal_static_google_cloud_datastream_v1_OracleProfile_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.datastream.v1.OracleProfile.class, com.google.cloud.datastream.v1.OracleProfile.Builder.class); } public static final int HOSTNAME_FIELD_NUMBER = 1; private volatile java.lang.Object hostname_; /** * * *
   * Required. Hostname for the Oracle connection.
   * 
* * string hostname = 1 [(.google.api.field_behavior) = REQUIRED]; * * @return The hostname. */ @java.lang.Override public java.lang.String getHostname() { java.lang.Object ref = hostname_; 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(); hostname_ = s; return s; } } /** * * *
   * Required. Hostname for the Oracle connection.
   * 
* * string hostname = 1 [(.google.api.field_behavior) = REQUIRED]; * * @return The bytes for hostname. */ @java.lang.Override public com.google.protobuf.ByteString getHostnameBytes() { java.lang.Object ref = hostname_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); hostname_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int PORT_FIELD_NUMBER = 2; private int port_; /** * * *
   * Port for the Oracle connection, default value is 1521.
   * 
* * int32 port = 2; * * @return The port. */ @java.lang.Override public int getPort() { return port_; } public static final int USERNAME_FIELD_NUMBER = 3; private volatile java.lang.Object username_; /** * * *
   * Required. Username for the Oracle connection.
   * 
* * string username = 3 [(.google.api.field_behavior) = REQUIRED]; * * @return The username. */ @java.lang.Override public java.lang.String getUsername() { java.lang.Object ref = username_; 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(); username_ = s; return s; } } /** * * *
   * Required. Username for the Oracle connection.
   * 
* * string username = 3 [(.google.api.field_behavior) = REQUIRED]; * * @return The bytes for username. */ @java.lang.Override public com.google.protobuf.ByteString getUsernameBytes() { java.lang.Object ref = username_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); username_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int PASSWORD_FIELD_NUMBER = 4; private volatile java.lang.Object password_; /** * * *
   * Required. Password for the Oracle connection.
   * 
* * string password = 4 [(.google.api.field_behavior) = REQUIRED]; * * @return The password. */ @java.lang.Override public java.lang.String getPassword() { java.lang.Object ref = password_; 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(); password_ = s; return s; } } /** * * *
   * Required. Password for the Oracle connection.
   * 
* * string password = 4 [(.google.api.field_behavior) = REQUIRED]; * * @return The bytes for password. */ @java.lang.Override public com.google.protobuf.ByteString getPasswordBytes() { java.lang.Object ref = password_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); password_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int DATABASE_SERVICE_FIELD_NUMBER = 5; private volatile java.lang.Object databaseService_; /** * * *
   * Required. Database for the Oracle connection.
   * 
* * string database_service = 5 [(.google.api.field_behavior) = REQUIRED]; * * @return The databaseService. */ @java.lang.Override public java.lang.String getDatabaseService() { java.lang.Object ref = databaseService_; 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(); databaseService_ = s; return s; } } /** * * *
   * Required. Database for the Oracle connection.
   * 
* * string database_service = 5 [(.google.api.field_behavior) = REQUIRED]; * * @return The bytes for databaseService. */ @java.lang.Override public com.google.protobuf.ByteString getDatabaseServiceBytes() { java.lang.Object ref = databaseService_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); databaseService_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int CONNECTION_ATTRIBUTES_FIELD_NUMBER = 6; private static final class ConnectionAttributesDefaultEntryHolder { static final com.google.protobuf.MapEntry defaultEntry = com.google.protobuf.MapEntry.newDefaultInstance( com.google.cloud.datastream.v1.DatastreamResourcesProto .internal_static_google_cloud_datastream_v1_OracleProfile_ConnectionAttributesEntry_descriptor, com.google.protobuf.WireFormat.FieldType.STRING, "", com.google.protobuf.WireFormat.FieldType.STRING, ""); } private com.google.protobuf.MapField connectionAttributes_; private com.google.protobuf.MapField internalGetConnectionAttributes() { if (connectionAttributes_ == null) { return com.google.protobuf.MapField.emptyMapField( ConnectionAttributesDefaultEntryHolder.defaultEntry); } return connectionAttributes_; } public int getConnectionAttributesCount() { return internalGetConnectionAttributes().getMap().size(); } /** * * *
   * Connection string attributes
   * 
* * map<string, string> connection_attributes = 6; */ @java.lang.Override public boolean containsConnectionAttributes(java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } return internalGetConnectionAttributes().getMap().containsKey(key); } /** Use {@link #getConnectionAttributesMap()} instead. */ @java.lang.Override @java.lang.Deprecated public java.util.Map getConnectionAttributes() { return getConnectionAttributesMap(); } /** * * *
   * Connection string attributes
   * 
* * map<string, string> connection_attributes = 6; */ @java.lang.Override public java.util.Map getConnectionAttributesMap() { return internalGetConnectionAttributes().getMap(); } /** * * *
   * Connection string attributes
   * 
* * map<string, string> connection_attributes = 6; */ @java.lang.Override public java.lang.String getConnectionAttributesOrDefault( java.lang.String key, java.lang.String defaultValue) { if (key == null) { throw new java.lang.NullPointerException(); } java.util.Map map = internalGetConnectionAttributes().getMap(); return map.containsKey(key) ? map.get(key) : defaultValue; } /** * * *
   * Connection string attributes
   * 
* * map<string, string> connection_attributes = 6; */ @java.lang.Override public java.lang.String getConnectionAttributesOrThrow(java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } java.util.Map map = internalGetConnectionAttributes().getMap(); if (!map.containsKey(key)) { throw new java.lang.IllegalArgumentException(); } return map.get(key); } 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(hostname_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, hostname_); } if (port_ != 0) { output.writeInt32(2, port_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(username_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, username_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(password_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 4, password_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(databaseService_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 5, databaseService_); } com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( output, internalGetConnectionAttributes(), ConnectionAttributesDefaultEntryHolder.defaultEntry, 6); 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(hostname_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, hostname_); } if (port_ != 0) { size += com.google.protobuf.CodedOutputStream.computeInt32Size(2, port_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(username_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, username_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(password_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, password_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(databaseService_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, databaseService_); } for (java.util.Map.Entry entry : internalGetConnectionAttributes().getMap().entrySet()) { com.google.protobuf.MapEntry connectionAttributes__ = ConnectionAttributesDefaultEntryHolder.defaultEntry .newBuilderForType() .setKey(entry.getKey()) .setValue(entry.getValue()) .build(); size += com.google.protobuf.CodedOutputStream.computeMessageSize(6, connectionAttributes__); } 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.OracleProfile)) { return super.equals(obj); } com.google.cloud.datastream.v1.OracleProfile other = (com.google.cloud.datastream.v1.OracleProfile) obj; if (!getHostname().equals(other.getHostname())) return false; if (getPort() != other.getPort()) return false; if (!getUsername().equals(other.getUsername())) return false; if (!getPassword().equals(other.getPassword())) return false; if (!getDatabaseService().equals(other.getDatabaseService())) return false; if (!internalGetConnectionAttributes().equals(other.internalGetConnectionAttributes())) 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) + HOSTNAME_FIELD_NUMBER; hash = (53 * hash) + getHostname().hashCode(); hash = (37 * hash) + PORT_FIELD_NUMBER; hash = (53 * hash) + getPort(); hash = (37 * hash) + USERNAME_FIELD_NUMBER; hash = (53 * hash) + getUsername().hashCode(); hash = (37 * hash) + PASSWORD_FIELD_NUMBER; hash = (53 * hash) + getPassword().hashCode(); hash = (37 * hash) + DATABASE_SERVICE_FIELD_NUMBER; hash = (53 * hash) + getDatabaseService().hashCode(); if (!internalGetConnectionAttributes().getMap().isEmpty()) { hash = (37 * hash) + CONNECTION_ATTRIBUTES_FIELD_NUMBER; hash = (53 * hash) + internalGetConnectionAttributes().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.google.cloud.datastream.v1.OracleProfile parseFrom(java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.datastream.v1.OracleProfile 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.OracleProfile parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.datastream.v1.OracleProfile 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.OracleProfile parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.datastream.v1.OracleProfile 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.OracleProfile parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.cloud.datastream.v1.OracleProfile 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.OracleProfile parseDelimitedFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.cloud.datastream.v1.OracleProfile 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.OracleProfile 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.OracleProfile 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.OracleProfile 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 database profile.
   * 
* * Protobuf type {@code google.cloud.datastream.v1.OracleProfile} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.cloud.datastream.v1.OracleProfile) com.google.cloud.datastream.v1.OracleProfileOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.datastream.v1.DatastreamResourcesProto .internal_static_google_cloud_datastream_v1_OracleProfile_descriptor; } @SuppressWarnings({"rawtypes"}) protected com.google.protobuf.MapField internalGetMapField(int number) { switch (number) { case 6: return internalGetConnectionAttributes(); default: throw new RuntimeException("Invalid map field number: " + number); } } @SuppressWarnings({"rawtypes"}) protected com.google.protobuf.MapField internalGetMutableMapField(int number) { switch (number) { case 6: return internalGetMutableConnectionAttributes(); default: throw new RuntimeException("Invalid map field number: " + number); } } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.datastream.v1.DatastreamResourcesProto .internal_static_google_cloud_datastream_v1_OracleProfile_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.datastream.v1.OracleProfile.class, com.google.cloud.datastream.v1.OracleProfile.Builder.class); } // Construct using com.google.cloud.datastream.v1.OracleProfile.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(); hostname_ = ""; port_ = 0; username_ = ""; password_ = ""; databaseService_ = ""; internalGetMutableConnectionAttributes().clear(); 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_OracleProfile_descriptor; } @java.lang.Override public com.google.cloud.datastream.v1.OracleProfile getDefaultInstanceForType() { return com.google.cloud.datastream.v1.OracleProfile.getDefaultInstance(); } @java.lang.Override public com.google.cloud.datastream.v1.OracleProfile build() { com.google.cloud.datastream.v1.OracleProfile result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.cloud.datastream.v1.OracleProfile buildPartial() { com.google.cloud.datastream.v1.OracleProfile result = new com.google.cloud.datastream.v1.OracleProfile(this); int from_bitField0_ = bitField0_; result.hostname_ = hostname_; result.port_ = port_; result.username_ = username_; result.password_ = password_; result.databaseService_ = databaseService_; result.connectionAttributes_ = internalGetConnectionAttributes(); result.connectionAttributes_.makeImmutable(); 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.OracleProfile) { return mergeFrom((com.google.cloud.datastream.v1.OracleProfile) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.cloud.datastream.v1.OracleProfile other) { if (other == com.google.cloud.datastream.v1.OracleProfile.getDefaultInstance()) return this; if (!other.getHostname().isEmpty()) { hostname_ = other.hostname_; onChanged(); } if (other.getPort() != 0) { setPort(other.getPort()); } if (!other.getUsername().isEmpty()) { username_ = other.username_; onChanged(); } if (!other.getPassword().isEmpty()) { password_ = other.password_; onChanged(); } if (!other.getDatabaseService().isEmpty()) { databaseService_ = other.databaseService_; onChanged(); } internalGetMutableConnectionAttributes().mergeFrom(other.internalGetConnectionAttributes()); 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.OracleProfile parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.google.cloud.datastream.v1.OracleProfile) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.lang.Object hostname_ = ""; /** * * *
     * Required. Hostname for the Oracle connection.
     * 
* * string hostname = 1 [(.google.api.field_behavior) = REQUIRED]; * * @return The hostname. */ public java.lang.String getHostname() { java.lang.Object ref = hostname_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); hostname_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Required. Hostname for the Oracle connection.
     * 
* * string hostname = 1 [(.google.api.field_behavior) = REQUIRED]; * * @return The bytes for hostname. */ public com.google.protobuf.ByteString getHostnameBytes() { java.lang.Object ref = hostname_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); hostname_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Required. Hostname for the Oracle connection.
     * 
* * string hostname = 1 [(.google.api.field_behavior) = REQUIRED]; * * @param value The hostname to set. * @return This builder for chaining. */ public Builder setHostname(java.lang.String value) { if (value == null) { throw new NullPointerException(); } hostname_ = value; onChanged(); return this; } /** * * *
     * Required. Hostname for the Oracle connection.
     * 
* * string hostname = 1 [(.google.api.field_behavior) = REQUIRED]; * * @return This builder for chaining. */ public Builder clearHostname() { hostname_ = getDefaultInstance().getHostname(); onChanged(); return this; } /** * * *
     * Required. Hostname for the Oracle connection.
     * 
* * string hostname = 1 [(.google.api.field_behavior) = REQUIRED]; * * @param value The bytes for hostname to set. * @return This builder for chaining. */ public Builder setHostnameBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); hostname_ = value; onChanged(); return this; } private int port_; /** * * *
     * Port for the Oracle connection, default value is 1521.
     * 
* * int32 port = 2; * * @return The port. */ @java.lang.Override public int getPort() { return port_; } /** * * *
     * Port for the Oracle connection, default value is 1521.
     * 
* * int32 port = 2; * * @param value The port to set. * @return This builder for chaining. */ public Builder setPort(int value) { port_ = value; onChanged(); return this; } /** * * *
     * Port for the Oracle connection, default value is 1521.
     * 
* * int32 port = 2; * * @return This builder for chaining. */ public Builder clearPort() { port_ = 0; onChanged(); return this; } private java.lang.Object username_ = ""; /** * * *
     * Required. Username for the Oracle connection.
     * 
* * string username = 3 [(.google.api.field_behavior) = REQUIRED]; * * @return The username. */ public java.lang.String getUsername() { java.lang.Object ref = username_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); username_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Required. Username for the Oracle connection.
     * 
* * string username = 3 [(.google.api.field_behavior) = REQUIRED]; * * @return The bytes for username. */ public com.google.protobuf.ByteString getUsernameBytes() { java.lang.Object ref = username_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); username_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Required. Username for the Oracle connection.
     * 
* * string username = 3 [(.google.api.field_behavior) = REQUIRED]; * * @param value The username to set. * @return This builder for chaining. */ public Builder setUsername(java.lang.String value) { if (value == null) { throw new NullPointerException(); } username_ = value; onChanged(); return this; } /** * * *
     * Required. Username for the Oracle connection.
     * 
* * string username = 3 [(.google.api.field_behavior) = REQUIRED]; * * @return This builder for chaining. */ public Builder clearUsername() { username_ = getDefaultInstance().getUsername(); onChanged(); return this; } /** * * *
     * Required. Username for the Oracle connection.
     * 
* * string username = 3 [(.google.api.field_behavior) = REQUIRED]; * * @param value The bytes for username to set. * @return This builder for chaining. */ public Builder setUsernameBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); username_ = value; onChanged(); return this; } private java.lang.Object password_ = ""; /** * * *
     * Required. Password for the Oracle connection.
     * 
* * string password = 4 [(.google.api.field_behavior) = REQUIRED]; * * @return The password. */ public java.lang.String getPassword() { java.lang.Object ref = password_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); password_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Required. Password for the Oracle connection.
     * 
* * string password = 4 [(.google.api.field_behavior) = REQUIRED]; * * @return The bytes for password. */ public com.google.protobuf.ByteString getPasswordBytes() { java.lang.Object ref = password_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); password_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Required. Password for the Oracle connection.
     * 
* * string password = 4 [(.google.api.field_behavior) = REQUIRED]; * * @param value The password to set. * @return This builder for chaining. */ public Builder setPassword(java.lang.String value) { if (value == null) { throw new NullPointerException(); } password_ = value; onChanged(); return this; } /** * * *
     * Required. Password for the Oracle connection.
     * 
* * string password = 4 [(.google.api.field_behavior) = REQUIRED]; * * @return This builder for chaining. */ public Builder clearPassword() { password_ = getDefaultInstance().getPassword(); onChanged(); return this; } /** * * *
     * Required. Password for the Oracle connection.
     * 
* * string password = 4 [(.google.api.field_behavior) = REQUIRED]; * * @param value The bytes for password to set. * @return This builder for chaining. */ public Builder setPasswordBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); password_ = value; onChanged(); return this; } private java.lang.Object databaseService_ = ""; /** * * *
     * Required. Database for the Oracle connection.
     * 
* * string database_service = 5 [(.google.api.field_behavior) = REQUIRED]; * * @return The databaseService. */ public java.lang.String getDatabaseService() { java.lang.Object ref = databaseService_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); databaseService_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Required. Database for the Oracle connection.
     * 
* * string database_service = 5 [(.google.api.field_behavior) = REQUIRED]; * * @return The bytes for databaseService. */ public com.google.protobuf.ByteString getDatabaseServiceBytes() { java.lang.Object ref = databaseService_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); databaseService_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Required. Database for the Oracle connection.
     * 
* * string database_service = 5 [(.google.api.field_behavior) = REQUIRED]; * * @param value The databaseService to set. * @return This builder for chaining. */ public Builder setDatabaseService(java.lang.String value) { if (value == null) { throw new NullPointerException(); } databaseService_ = value; onChanged(); return this; } /** * * *
     * Required. Database for the Oracle connection.
     * 
* * string database_service = 5 [(.google.api.field_behavior) = REQUIRED]; * * @return This builder for chaining. */ public Builder clearDatabaseService() { databaseService_ = getDefaultInstance().getDatabaseService(); onChanged(); return this; } /** * * *
     * Required. Database for the Oracle connection.
     * 
* * string database_service = 5 [(.google.api.field_behavior) = REQUIRED]; * * @param value The bytes for databaseService to set. * @return This builder for chaining. */ public Builder setDatabaseServiceBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); databaseService_ = value; onChanged(); return this; } private com.google.protobuf.MapField connectionAttributes_; private com.google.protobuf.MapField internalGetConnectionAttributes() { if (connectionAttributes_ == null) { return com.google.protobuf.MapField.emptyMapField( ConnectionAttributesDefaultEntryHolder.defaultEntry); } return connectionAttributes_; } private com.google.protobuf.MapField internalGetMutableConnectionAttributes() { onChanged(); ; if (connectionAttributes_ == null) { connectionAttributes_ = com.google.protobuf.MapField.newMapField( ConnectionAttributesDefaultEntryHolder.defaultEntry); } if (!connectionAttributes_.isMutable()) { connectionAttributes_ = connectionAttributes_.copy(); } return connectionAttributes_; } public int getConnectionAttributesCount() { return internalGetConnectionAttributes().getMap().size(); } /** * * *
     * Connection string attributes
     * 
* * map<string, string> connection_attributes = 6; */ @java.lang.Override public boolean containsConnectionAttributes(java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } return internalGetConnectionAttributes().getMap().containsKey(key); } /** Use {@link #getConnectionAttributesMap()} instead. */ @java.lang.Override @java.lang.Deprecated public java.util.Map getConnectionAttributes() { return getConnectionAttributesMap(); } /** * * *
     * Connection string attributes
     * 
* * map<string, string> connection_attributes = 6; */ @java.lang.Override public java.util.Map getConnectionAttributesMap() { return internalGetConnectionAttributes().getMap(); } /** * * *
     * Connection string attributes
     * 
* * map<string, string> connection_attributes = 6; */ @java.lang.Override public java.lang.String getConnectionAttributesOrDefault( java.lang.String key, java.lang.String defaultValue) { if (key == null) { throw new java.lang.NullPointerException(); } java.util.Map map = internalGetConnectionAttributes().getMap(); return map.containsKey(key) ? map.get(key) : defaultValue; } /** * * *
     * Connection string attributes
     * 
* * map<string, string> connection_attributes = 6; */ @java.lang.Override public java.lang.String getConnectionAttributesOrThrow(java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } java.util.Map map = internalGetConnectionAttributes().getMap(); if (!map.containsKey(key)) { throw new java.lang.IllegalArgumentException(); } return map.get(key); } public Builder clearConnectionAttributes() { internalGetMutableConnectionAttributes().getMutableMap().clear(); return this; } /** * * *
     * Connection string attributes
     * 
* * map<string, string> connection_attributes = 6; */ public Builder removeConnectionAttributes(java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } internalGetMutableConnectionAttributes().getMutableMap().remove(key); return this; } /** Use alternate mutation accessors instead. */ @java.lang.Deprecated public java.util.Map getMutableConnectionAttributes() { return internalGetMutableConnectionAttributes().getMutableMap(); } /** * * *
     * Connection string attributes
     * 
* * map<string, string> connection_attributes = 6; */ public Builder putConnectionAttributes(java.lang.String key, java.lang.String value) { if (key == null) { throw new java.lang.NullPointerException(); } if (value == null) { throw new java.lang.NullPointerException(); } internalGetMutableConnectionAttributes().getMutableMap().put(key, value); return this; } /** * * *
     * Connection string attributes
     * 
* * map<string, string> connection_attributes = 6; */ public Builder putAllConnectionAttributes( java.util.Map values) { internalGetMutableConnectionAttributes().getMutableMap().putAll(values); 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.OracleProfile) } // @@protoc_insertion_point(class_scope:google.cloud.datastream.v1.OracleProfile) private static final com.google.cloud.datastream.v1.OracleProfile DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.datastream.v1.OracleProfile(); } public static com.google.cloud.datastream.v1.OracleProfile getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public OracleProfile parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new OracleProfile(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.OracleProfile getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy