com.google.appengine.v1.Service Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-appengine-admin-v1 Show documentation
Show all versions of proto-google-cloud-appengine-admin-v1 Show documentation
Proto library for google-cloud-appengine-admin
/*
* Copyright 2023 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/appengine/v1/service.proto
package com.google.appengine.v1;
/**
*
*
*
* A Service resource is a logical component of an application that can share
* state and communicate in a secure fashion with other services.
* For example, an application that handles customer requests might
* include separate services to handle tasks such as backend data
* analysis or API requests from mobile devices. Each service has a
* collection of versions that define a specific set of code used to
* implement the functionality of that service.
*
*
* Protobuf type {@code google.appengine.v1.Service}
*/
public final class Service extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.appengine.v1.Service)
ServiceOrBuilder {
private static final long serialVersionUID = 0L;
// Use Service.newBuilder() to construct.
private Service(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Service() {
name_ = "";
id_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new Service();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.appengine.v1.ServiceProto
.internal_static_google_appengine_v1_Service_descriptor;
}
@SuppressWarnings({"rawtypes"})
@java.lang.Override
protected com.google.protobuf.MapField internalGetMapField(int number) {
switch (number) {
case 4:
return internalGetLabels();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.appengine.v1.ServiceProto
.internal_static_google_appengine_v1_Service_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.appengine.v1.Service.class, com.google.appengine.v1.Service.Builder.class);
}
public static final int NAME_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
/**
*
*
*
* Full path to the Service resource in the API.
* Example: `apps/myapp/services/default`.
*
* @OutputOnly
*
*
* string name = 1;
*
* @return The name.
*/
@java.lang.Override
public java.lang.String getName() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
name_ = s;
return s;
}
}
/**
*
*
*
* Full path to the Service resource in the API.
* Example: `apps/myapp/services/default`.
*
* @OutputOnly
*
*
* string name = 1;
*
* @return The bytes for name.
*/
@java.lang.Override
public com.google.protobuf.ByteString getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int ID_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object id_ = "";
/**
*
*
*
* Relative name of the service within the application.
* Example: `default`.
*
* @OutputOnly
*
*
* string id = 2;
*
* @return The id.
*/
@java.lang.Override
public java.lang.String getId() {
java.lang.Object ref = id_;
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();
id_ = s;
return s;
}
}
/**
*
*
*
* Relative name of the service within the application.
* Example: `default`.
*
* @OutputOnly
*
*
* string id = 2;
*
* @return The bytes for id.
*/
@java.lang.Override
public com.google.protobuf.ByteString getIdBytes() {
java.lang.Object ref = id_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
id_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int SPLIT_FIELD_NUMBER = 3;
private com.google.appengine.v1.TrafficSplit split_;
/**
*
*
*
* Mapping that defines fractional HTTP traffic diversion to
* different versions within the service.
*
*
* .google.appengine.v1.TrafficSplit split = 3;
*
* @return Whether the split field is set.
*/
@java.lang.Override
public boolean hasSplit() {
return split_ != null;
}
/**
*
*
*
* Mapping that defines fractional HTTP traffic diversion to
* different versions within the service.
*
*
* .google.appengine.v1.TrafficSplit split = 3;
*
* @return The split.
*/
@java.lang.Override
public com.google.appengine.v1.TrafficSplit getSplit() {
return split_ == null ? com.google.appengine.v1.TrafficSplit.getDefaultInstance() : split_;
}
/**
*
*
*
* Mapping that defines fractional HTTP traffic diversion to
* different versions within the service.
*
*
* .google.appengine.v1.TrafficSplit split = 3;
*/
@java.lang.Override
public com.google.appengine.v1.TrafficSplitOrBuilder getSplitOrBuilder() {
return split_ == null ? com.google.appengine.v1.TrafficSplit.getDefaultInstance() : split_;
}
public static final int LABELS_FIELD_NUMBER = 4;
private static final class LabelsDefaultEntryHolder {
static final com.google.protobuf.MapEntry defaultEntry =
com.google.protobuf.MapEntry.newDefaultInstance(
com.google.appengine.v1.ServiceProto
.internal_static_google_appengine_v1_Service_LabelsEntry_descriptor,
com.google.protobuf.WireFormat.FieldType.STRING,
"",
com.google.protobuf.WireFormat.FieldType.STRING,
"");
}
@SuppressWarnings("serial")
private com.google.protobuf.MapField labels_;
private com.google.protobuf.MapField internalGetLabels() {
if (labels_ == null) {
return com.google.protobuf.MapField.emptyMapField(LabelsDefaultEntryHolder.defaultEntry);
}
return labels_;
}
public int getLabelsCount() {
return internalGetLabels().getMap().size();
}
/**
*
*
*
* A set of labels to apply to this service. Labels are key/value pairs that
* describe the service and all resources that belong to it (e.g.,
* versions). The labels can be used to search and group resources, and are
* propagated to the usage and billing reports, enabling fine-grain analysis
* of costs. An example of using labels is to tag resources belonging to
* different environments (e.g., "env=prod", "env=qa").
*
* <p>Label keys and values can be no longer than 63 characters and can only
* contain lowercase letters, numeric characters, underscores, dashes, and
* international characters. Label keys must start with a lowercase letter
* or an international character. Each service can have at most 32 labels.
*
*
* map<string, string> labels = 4;
*/
@java.lang.Override
public boolean containsLabels(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
return internalGetLabels().getMap().containsKey(key);
}
/** Use {@link #getLabelsMap()} instead. */
@java.lang.Override
@java.lang.Deprecated
public java.util.Map getLabels() {
return getLabelsMap();
}
/**
*
*
*
* A set of labels to apply to this service. Labels are key/value pairs that
* describe the service and all resources that belong to it (e.g.,
* versions). The labels can be used to search and group resources, and are
* propagated to the usage and billing reports, enabling fine-grain analysis
* of costs. An example of using labels is to tag resources belonging to
* different environments (e.g., "env=prod", "env=qa").
*
* <p>Label keys and values can be no longer than 63 characters and can only
* contain lowercase letters, numeric characters, underscores, dashes, and
* international characters. Label keys must start with a lowercase letter
* or an international character. Each service can have at most 32 labels.
*
*
* map<string, string> labels = 4;
*/
@java.lang.Override
public java.util.Map getLabelsMap() {
return internalGetLabels().getMap();
}
/**
*
*
*
* A set of labels to apply to this service. Labels are key/value pairs that
* describe the service and all resources that belong to it (e.g.,
* versions). The labels can be used to search and group resources, and are
* propagated to the usage and billing reports, enabling fine-grain analysis
* of costs. An example of using labels is to tag resources belonging to
* different environments (e.g., "env=prod", "env=qa").
*
* <p>Label keys and values can be no longer than 63 characters and can only
* contain lowercase letters, numeric characters, underscores, dashes, and
* international characters. Label keys must start with a lowercase letter
* or an international character. Each service can have at most 32 labels.
*
*
* map<string, string> labels = 4;
*/
@java.lang.Override
public /* nullable */ java.lang.String getLabelsOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue) {
if (key == null) {
throw new NullPointerException("map key");
}
java.util.Map map = internalGetLabels().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
*
*
* A set of labels to apply to this service. Labels are key/value pairs that
* describe the service and all resources that belong to it (e.g.,
* versions). The labels can be used to search and group resources, and are
* propagated to the usage and billing reports, enabling fine-grain analysis
* of costs. An example of using labels is to tag resources belonging to
* different environments (e.g., "env=prod", "env=qa").
*
* <p>Label keys and values can be no longer than 63 characters and can only
* contain lowercase letters, numeric characters, underscores, dashes, and
* international characters. Label keys must start with a lowercase letter
* or an international character. Each service can have at most 32 labels.
*
*
* map<string, string> labels = 4;
*/
@java.lang.Override
public java.lang.String getLabelsOrThrow(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
java.util.Map map = internalGetLabels().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public static final int NETWORK_SETTINGS_FIELD_NUMBER = 6;
private com.google.appengine.v1.NetworkSettings networkSettings_;
/**
*
*
*
* Ingress settings for this service. Will apply to all versions.
*
*
* .google.appengine.v1.NetworkSettings network_settings = 6;
*
* @return Whether the networkSettings field is set.
*/
@java.lang.Override
public boolean hasNetworkSettings() {
return networkSettings_ != null;
}
/**
*
*
*
* Ingress settings for this service. Will apply to all versions.
*
*
* .google.appengine.v1.NetworkSettings network_settings = 6;
*
* @return The networkSettings.
*/
@java.lang.Override
public com.google.appengine.v1.NetworkSettings getNetworkSettings() {
return networkSettings_ == null
? com.google.appengine.v1.NetworkSettings.getDefaultInstance()
: networkSettings_;
}
/**
*
*
*
* Ingress settings for this service. Will apply to all versions.
*
*
* .google.appengine.v1.NetworkSettings network_settings = 6;
*/
@java.lang.Override
public com.google.appengine.v1.NetworkSettingsOrBuilder getNetworkSettingsOrBuilder() {
return networkSettings_ == null
? com.google.appengine.v1.NetworkSettings.getDefaultInstance()
: networkSettings_;
}
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(name_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, id_);
}
if (split_ != null) {
output.writeMessage(3, getSplit());
}
com.google.protobuf.GeneratedMessageV3.serializeStringMapTo(
output, internalGetLabels(), LabelsDefaultEntryHolder.defaultEntry, 4);
if (networkSettings_ != null) {
output.writeMessage(6, getNetworkSettings());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, id_);
}
if (split_ != null) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getSplit());
}
for (java.util.Map.Entry entry :
internalGetLabels().getMap().entrySet()) {
com.google.protobuf.MapEntry labels__ =
LabelsDefaultEntryHolder.defaultEntry
.newBuilderForType()
.setKey(entry.getKey())
.setValue(entry.getValue())
.build();
size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, labels__);
}
if (networkSettings_ != null) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(6, getNetworkSettings());
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.appengine.v1.Service)) {
return super.equals(obj);
}
com.google.appengine.v1.Service other = (com.google.appengine.v1.Service) obj;
if (!getName().equals(other.getName())) return false;
if (!getId().equals(other.getId())) return false;
if (hasSplit() != other.hasSplit()) return false;
if (hasSplit()) {
if (!getSplit().equals(other.getSplit())) return false;
}
if (!internalGetLabels().equals(other.internalGetLabels())) return false;
if (hasNetworkSettings() != other.hasNetworkSettings()) return false;
if (hasNetworkSettings()) {
if (!getNetworkSettings().equals(other.getNetworkSettings())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + NAME_FIELD_NUMBER;
hash = (53 * hash) + getName().hashCode();
hash = (37 * hash) + ID_FIELD_NUMBER;
hash = (53 * hash) + getId().hashCode();
if (hasSplit()) {
hash = (37 * hash) + SPLIT_FIELD_NUMBER;
hash = (53 * hash) + getSplit().hashCode();
}
if (!internalGetLabels().getMap().isEmpty()) {
hash = (37 * hash) + LABELS_FIELD_NUMBER;
hash = (53 * hash) + internalGetLabels().hashCode();
}
if (hasNetworkSettings()) {
hash = (37 * hash) + NETWORK_SETTINGS_FIELD_NUMBER;
hash = (53 * hash) + getNetworkSettings().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.appengine.v1.Service parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.appengine.v1.Service parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.appengine.v1.Service parseFrom(com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.appengine.v1.Service 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.appengine.v1.Service parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.appengine.v1.Service parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.appengine.v1.Service parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.appengine.v1.Service 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.appengine.v1.Service parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.appengine.v1.Service 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.appengine.v1.Service parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.appengine.v1.Service 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.appengine.v1.Service 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;
}
/**
*
*
*
* A Service resource is a logical component of an application that can share
* state and communicate in a secure fashion with other services.
* For example, an application that handles customer requests might
* include separate services to handle tasks such as backend data
* analysis or API requests from mobile devices. Each service has a
* collection of versions that define a specific set of code used to
* implement the functionality of that service.
*
*
* Protobuf type {@code google.appengine.v1.Service}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.appengine.v1.Service)
com.google.appengine.v1.ServiceOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.appengine.v1.ServiceProto
.internal_static_google_appengine_v1_Service_descriptor;
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMapField(int number) {
switch (number) {
case 4:
return internalGetLabels();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMutableMapField(int number) {
switch (number) {
case 4:
return internalGetMutableLabels();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.appengine.v1.ServiceProto
.internal_static_google_appengine_v1_Service_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.appengine.v1.Service.class, com.google.appengine.v1.Service.Builder.class);
}
// Construct using com.google.appengine.v1.Service.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
name_ = "";
id_ = "";
split_ = null;
if (splitBuilder_ != null) {
splitBuilder_.dispose();
splitBuilder_ = null;
}
internalGetMutableLabels().clear();
networkSettings_ = null;
if (networkSettingsBuilder_ != null) {
networkSettingsBuilder_.dispose();
networkSettingsBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.appengine.v1.ServiceProto
.internal_static_google_appengine_v1_Service_descriptor;
}
@java.lang.Override
public com.google.appengine.v1.Service getDefaultInstanceForType() {
return com.google.appengine.v1.Service.getDefaultInstance();
}
@java.lang.Override
public com.google.appengine.v1.Service build() {
com.google.appengine.v1.Service result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.appengine.v1.Service buildPartial() {
com.google.appengine.v1.Service result = new com.google.appengine.v1.Service(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(com.google.appengine.v1.Service result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.name_ = name_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.id_ = id_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.split_ = splitBuilder_ == null ? split_ : splitBuilder_.build();
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.labels_ = internalGetLabels();
result.labels_.makeImmutable();
}
if (((from_bitField0_ & 0x00000010) != 0)) {
result.networkSettings_ =
networkSettingsBuilder_ == null ? networkSettings_ : networkSettingsBuilder_.build();
}
}
@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.appengine.v1.Service) {
return mergeFrom((com.google.appengine.v1.Service) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.appengine.v1.Service other) {
if (other == com.google.appengine.v1.Service.getDefaultInstance()) return this;
if (!other.getName().isEmpty()) {
name_ = other.name_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.getId().isEmpty()) {
id_ = other.id_;
bitField0_ |= 0x00000002;
onChanged();
}
if (other.hasSplit()) {
mergeSplit(other.getSplit());
}
internalGetMutableLabels().mergeFrom(other.internalGetLabels());
bitField0_ |= 0x00000008;
if (other.hasNetworkSettings()) {
mergeNetworkSettings(other.getNetworkSettings());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
name_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18:
{
id_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
case 26:
{
input.readMessage(getSplitFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000004;
break;
} // case 26
case 34:
{
com.google.protobuf.MapEntry labels__ =
input.readMessage(
LabelsDefaultEntryHolder.defaultEntry.getParserForType(),
extensionRegistry);
internalGetMutableLabels()
.getMutableMap()
.put(labels__.getKey(), labels__.getValue());
bitField0_ |= 0x00000008;
break;
} // case 34
case 50:
{
input.readMessage(getNetworkSettingsFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000010;
break;
} // case 50
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object name_ = "";
/**
*
*
*
* Full path to the Service resource in the API.
* Example: `apps/myapp/services/default`.
*
* @OutputOnly
*
*
* string name = 1;
*
* @return The name.
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
name_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Full path to the Service resource in the API.
* Example: `apps/myapp/services/default`.
*
* @OutputOnly
*
*
* string name = 1;
*
* @return The bytes for name.
*/
public com.google.protobuf.ByteString getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Full path to the Service resource in the API.
* Example: `apps/myapp/services/default`.
*
* @OutputOnly
*
*
* string name = 1;
*
* @param value The name to set.
* @return This builder for chaining.
*/
public Builder setName(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
name_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Full path to the Service resource in the API.
* Example: `apps/myapp/services/default`.
*
* @OutputOnly
*
*
* string name = 1;
*
* @return This builder for chaining.
*/
public Builder clearName() {
name_ = getDefaultInstance().getName();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* Full path to the Service resource in the API.
* Example: `apps/myapp/services/default`.
*
* @OutputOnly
*
*
* string name = 1;
*
* @param value The bytes for name to set.
* @return This builder for chaining.
*/
public Builder setNameBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
name_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object id_ = "";
/**
*
*
*
* Relative name of the service within the application.
* Example: `default`.
*
* @OutputOnly
*
*
* string id = 2;
*
* @return The id.
*/
public java.lang.String getId() {
java.lang.Object ref = id_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
id_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Relative name of the service within the application.
* Example: `default`.
*
* @OutputOnly
*
*
* string id = 2;
*
* @return The bytes for id.
*/
public com.google.protobuf.ByteString getIdBytes() {
java.lang.Object ref = id_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
id_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Relative name of the service within the application.
* Example: `default`.
*
* @OutputOnly
*
*
* string id = 2;
*
* @param value The id to set.
* @return This builder for chaining.
*/
public Builder setId(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
id_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* Relative name of the service within the application.
* Example: `default`.
*
* @OutputOnly
*
*
* string id = 2;
*
* @return This builder for chaining.
*/
public Builder clearId() {
id_ = getDefaultInstance().getId();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
*
*
*
* Relative name of the service within the application.
* Example: `default`.
*
* @OutputOnly
*
*
* string id = 2;
*
* @param value The bytes for id to set.
* @return This builder for chaining.
*/
public Builder setIdBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
id_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private com.google.appengine.v1.TrafficSplit split_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.appengine.v1.TrafficSplit,
com.google.appengine.v1.TrafficSplit.Builder,
com.google.appengine.v1.TrafficSplitOrBuilder>
splitBuilder_;
/**
*
*
*
* Mapping that defines fractional HTTP traffic diversion to
* different versions within the service.
*
*
* .google.appengine.v1.TrafficSplit split = 3;
*
* @return Whether the split field is set.
*/
public boolean hasSplit() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
*
*
*
* Mapping that defines fractional HTTP traffic diversion to
* different versions within the service.
*
*
* .google.appengine.v1.TrafficSplit split = 3;
*
* @return The split.
*/
public com.google.appengine.v1.TrafficSplit getSplit() {
if (splitBuilder_ == null) {
return split_ == null ? com.google.appengine.v1.TrafficSplit.getDefaultInstance() : split_;
} else {
return splitBuilder_.getMessage();
}
}
/**
*
*
*
* Mapping that defines fractional HTTP traffic diversion to
* different versions within the service.
*
*
* .google.appengine.v1.TrafficSplit split = 3;
*/
public Builder setSplit(com.google.appengine.v1.TrafficSplit value) {
if (splitBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
split_ = value;
} else {
splitBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* Mapping that defines fractional HTTP traffic diversion to
* different versions within the service.
*
*
* .google.appengine.v1.TrafficSplit split = 3;
*/
public Builder setSplit(com.google.appengine.v1.TrafficSplit.Builder builderForValue) {
if (splitBuilder_ == null) {
split_ = builderForValue.build();
} else {
splitBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* Mapping that defines fractional HTTP traffic diversion to
* different versions within the service.
*
*
* .google.appengine.v1.TrafficSplit split = 3;
*/
public Builder mergeSplit(com.google.appengine.v1.TrafficSplit value) {
if (splitBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0)
&& split_ != null
&& split_ != com.google.appengine.v1.TrafficSplit.getDefaultInstance()) {
getSplitBuilder().mergeFrom(value);
} else {
split_ = value;
}
} else {
splitBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* Mapping that defines fractional HTTP traffic diversion to
* different versions within the service.
*
*
* .google.appengine.v1.TrafficSplit split = 3;
*/
public Builder clearSplit() {
bitField0_ = (bitField0_ & ~0x00000004);
split_ = null;
if (splitBuilder_ != null) {
splitBuilder_.dispose();
splitBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Mapping that defines fractional HTTP traffic diversion to
* different versions within the service.
*
*
* .google.appengine.v1.TrafficSplit split = 3;
*/
public com.google.appengine.v1.TrafficSplit.Builder getSplitBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getSplitFieldBuilder().getBuilder();
}
/**
*
*
*
* Mapping that defines fractional HTTP traffic diversion to
* different versions within the service.
*
*
* .google.appengine.v1.TrafficSplit split = 3;
*/
public com.google.appengine.v1.TrafficSplitOrBuilder getSplitOrBuilder() {
if (splitBuilder_ != null) {
return splitBuilder_.getMessageOrBuilder();
} else {
return split_ == null ? com.google.appengine.v1.TrafficSplit.getDefaultInstance() : split_;
}
}
/**
*
*
*
* Mapping that defines fractional HTTP traffic diversion to
* different versions within the service.
*
*
* .google.appengine.v1.TrafficSplit split = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.appengine.v1.TrafficSplit,
com.google.appengine.v1.TrafficSplit.Builder,
com.google.appengine.v1.TrafficSplitOrBuilder>
getSplitFieldBuilder() {
if (splitBuilder_ == null) {
splitBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.appengine.v1.TrafficSplit,
com.google.appengine.v1.TrafficSplit.Builder,
com.google.appengine.v1.TrafficSplitOrBuilder>(
getSplit(), getParentForChildren(), isClean());
split_ = null;
}
return splitBuilder_;
}
private com.google.protobuf.MapField labels_;
private com.google.protobuf.MapField internalGetLabels() {
if (labels_ == null) {
return com.google.protobuf.MapField.emptyMapField(LabelsDefaultEntryHolder.defaultEntry);
}
return labels_;
}
private com.google.protobuf.MapField
internalGetMutableLabels() {
if (labels_ == null) {
labels_ = com.google.protobuf.MapField.newMapField(LabelsDefaultEntryHolder.defaultEntry);
}
if (!labels_.isMutable()) {
labels_ = labels_.copy();
}
bitField0_ |= 0x00000008;
onChanged();
return labels_;
}
public int getLabelsCount() {
return internalGetLabels().getMap().size();
}
/**
*
*
*
* A set of labels to apply to this service. Labels are key/value pairs that
* describe the service and all resources that belong to it (e.g.,
* versions). The labels can be used to search and group resources, and are
* propagated to the usage and billing reports, enabling fine-grain analysis
* of costs. An example of using labels is to tag resources belonging to
* different environments (e.g., "env=prod", "env=qa").
*
* <p>Label keys and values can be no longer than 63 characters and can only
* contain lowercase letters, numeric characters, underscores, dashes, and
* international characters. Label keys must start with a lowercase letter
* or an international character. Each service can have at most 32 labels.
*
*
* map<string, string> labels = 4;
*/
@java.lang.Override
public boolean containsLabels(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
return internalGetLabels().getMap().containsKey(key);
}
/** Use {@link #getLabelsMap()} instead. */
@java.lang.Override
@java.lang.Deprecated
public java.util.Map getLabels() {
return getLabelsMap();
}
/**
*
*
*
* A set of labels to apply to this service. Labels are key/value pairs that
* describe the service and all resources that belong to it (e.g.,
* versions). The labels can be used to search and group resources, and are
* propagated to the usage and billing reports, enabling fine-grain analysis
* of costs. An example of using labels is to tag resources belonging to
* different environments (e.g., "env=prod", "env=qa").
*
* <p>Label keys and values can be no longer than 63 characters and can only
* contain lowercase letters, numeric characters, underscores, dashes, and
* international characters. Label keys must start with a lowercase letter
* or an international character. Each service can have at most 32 labels.
*
*
* map<string, string> labels = 4;
*/
@java.lang.Override
public java.util.Map getLabelsMap() {
return internalGetLabels().getMap();
}
/**
*
*
*
* A set of labels to apply to this service. Labels are key/value pairs that
* describe the service and all resources that belong to it (e.g.,
* versions). The labels can be used to search and group resources, and are
* propagated to the usage and billing reports, enabling fine-grain analysis
* of costs. An example of using labels is to tag resources belonging to
* different environments (e.g., "env=prod", "env=qa").
*
* <p>Label keys and values can be no longer than 63 characters and can only
* contain lowercase letters, numeric characters, underscores, dashes, and
* international characters. Label keys must start with a lowercase letter
* or an international character. Each service can have at most 32 labels.
*
*
* map<string, string> labels = 4;
*/
@java.lang.Override
public /* nullable */ java.lang.String getLabelsOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue) {
if (key == null) {
throw new NullPointerException("map key");
}
java.util.Map map = internalGetLabels().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
*
*
* A set of labels to apply to this service. Labels are key/value pairs that
* describe the service and all resources that belong to it (e.g.,
* versions). The labels can be used to search and group resources, and are
* propagated to the usage and billing reports, enabling fine-grain analysis
* of costs. An example of using labels is to tag resources belonging to
* different environments (e.g., "env=prod", "env=qa").
*
* <p>Label keys and values can be no longer than 63 characters and can only
* contain lowercase letters, numeric characters, underscores, dashes, and
* international characters. Label keys must start with a lowercase letter
* or an international character. Each service can have at most 32 labels.
*
*
* map<string, string> labels = 4;
*/
@java.lang.Override
public java.lang.String getLabelsOrThrow(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
java.util.Map map = internalGetLabels().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public Builder clearLabels() {
bitField0_ = (bitField0_ & ~0x00000008);
internalGetMutableLabels().getMutableMap().clear();
return this;
}
/**
*
*
*
* A set of labels to apply to this service. Labels are key/value pairs that
* describe the service and all resources that belong to it (e.g.,
* versions). The labels can be used to search and group resources, and are
* propagated to the usage and billing reports, enabling fine-grain analysis
* of costs. An example of using labels is to tag resources belonging to
* different environments (e.g., "env=prod", "env=qa").
*
* <p>Label keys and values can be no longer than 63 characters and can only
* contain lowercase letters, numeric characters, underscores, dashes, and
* international characters. Label keys must start with a lowercase letter
* or an international character. Each service can have at most 32 labels.
*
*
* map<string, string> labels = 4;
*/
public Builder removeLabels(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
internalGetMutableLabels().getMutableMap().remove(key);
return this;
}
/** Use alternate mutation accessors instead. */
@java.lang.Deprecated
public java.util.Map getMutableLabels() {
bitField0_ |= 0x00000008;
return internalGetMutableLabels().getMutableMap();
}
/**
*
*
*
* A set of labels to apply to this service. Labels are key/value pairs that
* describe the service and all resources that belong to it (e.g.,
* versions). The labels can be used to search and group resources, and are
* propagated to the usage and billing reports, enabling fine-grain analysis
* of costs. An example of using labels is to tag resources belonging to
* different environments (e.g., "env=prod", "env=qa").
*
* <p>Label keys and values can be no longer than 63 characters and can only
* contain lowercase letters, numeric characters, underscores, dashes, and
* international characters. Label keys must start with a lowercase letter
* or an international character. Each service can have at most 32 labels.
*
*
* map<string, string> labels = 4;
*/
public Builder putLabels(java.lang.String key, java.lang.String value) {
if (key == null) {
throw new NullPointerException("map key");
}
if (value == null) {
throw new NullPointerException("map value");
}
internalGetMutableLabels().getMutableMap().put(key, value);
bitField0_ |= 0x00000008;
return this;
}
/**
*
*
*
* A set of labels to apply to this service. Labels are key/value pairs that
* describe the service and all resources that belong to it (e.g.,
* versions). The labels can be used to search and group resources, and are
* propagated to the usage and billing reports, enabling fine-grain analysis
* of costs. An example of using labels is to tag resources belonging to
* different environments (e.g., "env=prod", "env=qa").
*
* <p>Label keys and values can be no longer than 63 characters and can only
* contain lowercase letters, numeric characters, underscores, dashes, and
* international characters. Label keys must start with a lowercase letter
* or an international character. Each service can have at most 32 labels.
*
*
* map<string, string> labels = 4;
*/
public Builder putAllLabels(java.util.Map values) {
internalGetMutableLabels().getMutableMap().putAll(values);
bitField0_ |= 0x00000008;
return this;
}
private com.google.appengine.v1.NetworkSettings networkSettings_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.appengine.v1.NetworkSettings,
com.google.appengine.v1.NetworkSettings.Builder,
com.google.appengine.v1.NetworkSettingsOrBuilder>
networkSettingsBuilder_;
/**
*
*
*
* Ingress settings for this service. Will apply to all versions.
*
*
* .google.appengine.v1.NetworkSettings network_settings = 6;
*
* @return Whether the networkSettings field is set.
*/
public boolean hasNetworkSettings() {
return ((bitField0_ & 0x00000010) != 0);
}
/**
*
*
*
* Ingress settings for this service. Will apply to all versions.
*
*
* .google.appengine.v1.NetworkSettings network_settings = 6;
*
* @return The networkSettings.
*/
public com.google.appengine.v1.NetworkSettings getNetworkSettings() {
if (networkSettingsBuilder_ == null) {
return networkSettings_ == null
? com.google.appengine.v1.NetworkSettings.getDefaultInstance()
: networkSettings_;
} else {
return networkSettingsBuilder_.getMessage();
}
}
/**
*
*
*
* Ingress settings for this service. Will apply to all versions.
*
*
* .google.appengine.v1.NetworkSettings network_settings = 6;
*/
public Builder setNetworkSettings(com.google.appengine.v1.NetworkSettings value) {
if (networkSettingsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
networkSettings_ = value;
} else {
networkSettingsBuilder_.setMessage(value);
}
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* Ingress settings for this service. Will apply to all versions.
*
*
* .google.appengine.v1.NetworkSettings network_settings = 6;
*/
public Builder setNetworkSettings(
com.google.appengine.v1.NetworkSettings.Builder builderForValue) {
if (networkSettingsBuilder_ == null) {
networkSettings_ = builderForValue.build();
} else {
networkSettingsBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* Ingress settings for this service. Will apply to all versions.
*
*
* .google.appengine.v1.NetworkSettings network_settings = 6;
*/
public Builder mergeNetworkSettings(com.google.appengine.v1.NetworkSettings value) {
if (networkSettingsBuilder_ == null) {
if (((bitField0_ & 0x00000010) != 0)
&& networkSettings_ != null
&& networkSettings_ != com.google.appengine.v1.NetworkSettings.getDefaultInstance()) {
getNetworkSettingsBuilder().mergeFrom(value);
} else {
networkSettings_ = value;
}
} else {
networkSettingsBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* Ingress settings for this service. Will apply to all versions.
*
*
* .google.appengine.v1.NetworkSettings network_settings = 6;
*/
public Builder clearNetworkSettings() {
bitField0_ = (bitField0_ & ~0x00000010);
networkSettings_ = null;
if (networkSettingsBuilder_ != null) {
networkSettingsBuilder_.dispose();
networkSettingsBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Ingress settings for this service. Will apply to all versions.
*
*
* .google.appengine.v1.NetworkSettings network_settings = 6;
*/
public com.google.appengine.v1.NetworkSettings.Builder getNetworkSettingsBuilder() {
bitField0_ |= 0x00000010;
onChanged();
return getNetworkSettingsFieldBuilder().getBuilder();
}
/**
*
*
*
* Ingress settings for this service. Will apply to all versions.
*
*
* .google.appengine.v1.NetworkSettings network_settings = 6;
*/
public com.google.appengine.v1.NetworkSettingsOrBuilder getNetworkSettingsOrBuilder() {
if (networkSettingsBuilder_ != null) {
return networkSettingsBuilder_.getMessageOrBuilder();
} else {
return networkSettings_ == null
? com.google.appengine.v1.NetworkSettings.getDefaultInstance()
: networkSettings_;
}
}
/**
*
*
*
* Ingress settings for this service. Will apply to all versions.
*
*
* .google.appengine.v1.NetworkSettings network_settings = 6;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.appengine.v1.NetworkSettings,
com.google.appengine.v1.NetworkSettings.Builder,
com.google.appengine.v1.NetworkSettingsOrBuilder>
getNetworkSettingsFieldBuilder() {
if (networkSettingsBuilder_ == null) {
networkSettingsBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.appengine.v1.NetworkSettings,
com.google.appengine.v1.NetworkSettings.Builder,
com.google.appengine.v1.NetworkSettingsOrBuilder>(
getNetworkSettings(), getParentForChildren(), isClean());
networkSettings_ = null;
}
return networkSettingsBuilder_;
}
@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.appengine.v1.Service)
}
// @@protoc_insertion_point(class_scope:google.appengine.v1.Service)
private static final com.google.appengine.v1.Service DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.appengine.v1.Service();
}
public static com.google.appengine.v1.Service getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Service parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.appengine.v1.Service getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy