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-appengine-v1 Show documentation
Show all versions of proto-google-appengine-v1 Show documentation
PROTO library for proto-google-appengine-v1
// 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
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private Service(
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;
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
java.lang.String s = input.readStringRequireUtf8();
name_ = s;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
id_ = s;
break;
}
case 26: {
com.google.appengine.v1.TrafficSplit.Builder subBuilder = null;
if (split_ != null) {
subBuilder = split_.toBuilder();
}
split_ = input.readMessage(com.google.appengine.v1.TrafficSplit.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(split_);
split_ = subBuilder.buildPartial();
}
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.appengine.v1.ServiceProto.internal_static_google_appengine_v1_Service_descriptor;
}
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;
private volatile java.lang.Object name_;
/**
*
* Full path to the Service resource in the API.
* Example: `apps/myapp/services/default`.
* @OutputOnly
*
*
* string name = 1;
*/
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;
*/
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;
private volatile java.lang.Object id_;
/**
*
* Relative name of the service within the application.
* Example: `default`.
* @OutputOnly
*
*
* string id = 2;
*/
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;
*/
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;
*/
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;
*/
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;
*/
public com.google.appengine.v1.TrafficSplitOrBuilder getSplitOrBuilder() {
return getSplit();
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!getNameBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_);
}
if (!getIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, id_);
}
if (split_ != null) {
output.writeMessage(3, getSplit());
}
unknownFields.writeTo(output);
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getNameBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_);
}
if (!getIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, id_);
}
if (split_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getSplit());
}
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.appengine.v1.Service)) {
return super.equals(obj);
}
com.google.appengine.v1.Service other = (com.google.appengine.v1.Service) obj;
boolean result = true;
result = result && getName()
.equals(other.getName());
result = result && getId()
.equals(other.getId());
result = result && (hasSplit() == other.hasSplit());
if (hasSplit()) {
result = result && getSplit()
.equals(other.getSplit());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@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();
}
hash = (29 * hash) + unknownFields.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);
}
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);
}
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;
}
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() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
public Builder clear() {
super.clear();
name_ = "";
id_ = "";
if (splitBuilder_ == null) {
split_ = null;
} else {
split_ = null;
splitBuilder_ = null;
}
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.google.appengine.v1.ServiceProto.internal_static_google_appengine_v1_Service_descriptor;
}
public com.google.appengine.v1.Service getDefaultInstanceForType() {
return com.google.appengine.v1.Service.getDefaultInstance();
}
public com.google.appengine.v1.Service build() {
com.google.appengine.v1.Service result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.google.appengine.v1.Service buildPartial() {
com.google.appengine.v1.Service result = new com.google.appengine.v1.Service(this);
result.name_ = name_;
result.id_ = id_;
if (splitBuilder_ == null) {
result.split_ = split_;
} else {
result.split_ = splitBuilder_.build();
}
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
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_;
onChanged();
}
if (!other.getId().isEmpty()) {
id_ = other.id_;
onChanged();
}
if (other.hasSplit()) {
mergeSplit(other.getSplit());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.google.appengine.v1.Service parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.google.appengine.v1.Service) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object name_ = "";
/**
*
* Full path to the Service resource in the API.
* Example: `apps/myapp/services/default`.
* @OutputOnly
*
*
* string name = 1;
*/
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;
*/
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;
*/
public Builder setName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
name_ = value;
onChanged();
return this;
}
/**
*
* Full path to the Service resource in the API.
* Example: `apps/myapp/services/default`.
* @OutputOnly
*
*
* string name = 1;
*/
public Builder clearName() {
name_ = getDefaultInstance().getName();
onChanged();
return this;
}
/**
*
* Full path to the Service resource in the API.
* Example: `apps/myapp/services/default`.
* @OutputOnly
*
*
* string name = 1;
*/
public Builder setNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
name_ = value;
onChanged();
return this;
}
private java.lang.Object id_ = "";
/**
*
* Relative name of the service within the application.
* Example: `default`.
* @OutputOnly
*
*
* string id = 2;
*/
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;
*/
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;
*/
public Builder setId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
id_ = value;
onChanged();
return this;
}
/**
*
* Relative name of the service within the application.
* Example: `default`.
* @OutputOnly
*
*
* string id = 2;
*/
public Builder clearId() {
id_ = getDefaultInstance().getId();
onChanged();
return this;
}
/**
*
* Relative name of the service within the application.
* Example: `default`.
* @OutputOnly
*
*
* string id = 2;
*/
public Builder setIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
id_ = value;
onChanged();
return this;
}
private com.google.appengine.v1.TrafficSplit split_ = null;
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;
*/
public boolean hasSplit() {
return splitBuilder_ != null || split_ != null;
}
/**
*
* 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 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;
onChanged();
} else {
splitBuilder_.setMessage(value);
}
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();
onChanged();
} else {
splitBuilder_.setMessage(builderForValue.build());
}
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 (split_ != null) {
split_ =
com.google.appengine.v1.TrafficSplit.newBuilder(split_).mergeFrom(value).buildPartial();
} else {
split_ = value;
}
onChanged();
} else {
splitBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* Mapping that defines fractional HTTP traffic diversion to
* different versions within the service.
*
*
* .google.appengine.v1.TrafficSplit split = 3;
*/
public Builder clearSplit() {
if (splitBuilder_ == null) {
split_ = null;
onChanged();
} else {
split_ = null;
splitBuilder_ = null;
}
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() {
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_;
}
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
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() {
public Service parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new Service(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
public com.google.appengine.v1.Service getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy