// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/protobuf/api.proto

package com.google.protobuf;

Declares an API Interface to be included in this interface. The including
interface must redeclare all the methods from the included interface, but
documentation and options are inherited as follows:
- If after comment and whitespace stripping, the documentation
  string of the redeclared method is empty, it will be inherited
  from the original method.
- Each annotation belonging to the service config (http,
  visibility) which is not set in the redeclared method will be
  inherited.
- If an http annotation is inherited, the path pattern will be
  modified as follows. Any version prefix will be replaced by the
  version of the including interface plus the [root][] path if
  specified.
Example of a simple mixin:
    package google.acl.v1;
    service AccessControl {
      // Get the underlying ACL object.
      rpc GetAcl(GetAclRequest) returns (Acl) {
        option (google.api.http).get = "/v1/{resource=**}:getAcl";
      }
    }
    package google.storage.v2;
    service Storage {
      rpc GetAcl(GetAclRequest) returns (Acl);
      // Get a data record.
      rpc GetData(GetDataRequest) returns (Data) {
        option (google.api.http).get = "/v2/{resource=**}";
      }
    }
Example of a mixin configuration:
    apis:
    - name: google.storage.v2.Storage
      mixins:
      - name: google.acl.v1.AccessControl
The mixin construct implies that all methods in `AccessControl` are
also declared with same name and request/response types in
`Storage`. A documentation generator or annotation processor will
see the effective `Storage.GetAcl` method after inherting
documentation and annotations as follows:
    service Storage {
      // Get the underlying ACL object.
      rpc GetAcl(GetAclRequest) returns (Acl) {
        option (google.api.http).get = "/v2/{resource=**}:getAcl";
      }
      ...
    }
Note how the version in the path pattern changed from `v1` to `v2`.
If the `root` field in the mixin is specified, it should be a
relative path under which inherited HTTP paths are placed. Example:
    apis:
    - name: google.storage.v2.Storage
      mixins:
      - name: google.acl.v1.AccessControl
        root: acls
This implies the following inherited HTTP annotation:
    service Storage {
      // Get the underlying ACL object.
      rpc GetAcl(GetAclRequest) returns (Acl) {
        option (google.api.http).get = "/v2/acls/{resource=**}:getAcl";
      }
      ...
    }
Protobuf type google.protobuf.Mixin
/** * <pre> * Declares an API Interface to be included in this interface. The including * interface must redeclare all the methods from the included interface, but * documentation and options are inherited as follows: * - If after comment and whitespace stripping, the documentation * string of the redeclared method is empty, it will be inherited * from the original method. * - Each annotation belonging to the service config (http, * visibility) which is not set in the redeclared method will be * inherited. * - If an http annotation is inherited, the path pattern will be * modified as follows. Any version prefix will be replaced by the * version of the including interface plus the [root][] path if * specified. * Example of a simple mixin: * package google.acl.v1; * service AccessControl { * // Get the underlying ACL object. * rpc GetAcl(GetAclRequest) returns (Acl) { * option (google.api.http).get = "/v1/{resource=**}:getAcl"; * } * } * package google.storage.v2; * service Storage { * rpc GetAcl(GetAclRequest) returns (Acl); * // Get a data record. * rpc GetData(GetDataRequest) returns (Data) { * option (google.api.http).get = "/v2/{resource=**}"; * } * } * Example of a mixin configuration: * apis: * - name: google.storage.v2.Storage * mixins: * - name: google.acl.v1.AccessControl * The mixin construct implies that all methods in `AccessControl` are * also declared with same name and request/response types in * `Storage`. A documentation generator or annotation processor will * see the effective `Storage.GetAcl` method after inherting * documentation and annotations as follows: * service Storage { * // Get the underlying ACL object. * rpc GetAcl(GetAclRequest) returns (Acl) { * option (google.api.http).get = "/v2/{resource=**}:getAcl"; * } * ... * } * Note how the version in the path pattern changed from `v1` to `v2`. * If the `root` field in the mixin is specified, it should be a * relative path under which inherited HTTP paths are placed. Example: * apis: * - name: google.storage.v2.Storage * mixins: * - name: google.acl.v1.AccessControl * root: acls * This implies the following inherited HTTP annotation: * service Storage { * // Get the underlying ACL object. * rpc GetAcl(GetAclRequest) returns (Acl) { * option (google.api.http).get = "/v2/acls/{resource=**}:getAcl"; * } * ... * } * </pre> * * Protobuf type {@code google.protobuf.Mixin} */
public final class Mixin extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.protobuf.Mixin) MixinOrBuilder { private static final long serialVersionUID = 0L; // Use Mixin.newBuilder() to construct. private Mixin(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { super(builder); } private Mixin() { name_ = ""; root_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new Mixin(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private Mixin( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { java.lang.String s = input.readStringRequireUtf8(); name_ = s; break; } case 18: { java.lang.String s = input.readStringRequireUtf8(); root_ = s; break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.protobuf.ApiProto.internal_static_google_protobuf_Mixin_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.protobuf.ApiProto.internal_static_google_protobuf_Mixin_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.protobuf.Mixin.class, com.google.protobuf.Mixin.Builder.class); } public static final int NAME_FIELD_NUMBER = 1; private volatile java.lang.Object name_;
The fully qualified name of the interface which is included.
string name = 1;
Returns:The name.
/** * <pre> * The fully qualified name of the interface which is included. * </pre> * * <code>string name = 1;</code> * @return The name. */
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; } }
The fully qualified name of the interface which is included.
string name = 1;
Returns:The bytes for name.
/** * <pre> * The fully qualified name of the interface which is included. * </pre> * * <code>string name = 1;</code> * @return The bytes for name. */
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 ROOT_FIELD_NUMBER = 2; private volatile java.lang.Object root_;
If non-empty specifies a path under which inherited HTTP paths
are rooted.
string root = 2;
Returns:The root.
/** * <pre> * If non-empty specifies a path under which inherited HTTP paths * are rooted. * </pre> * * <code>string root = 2;</code> * @return The root. */
public java.lang.String getRoot() { java.lang.Object ref = root_; 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(); root_ = s; return s; } }
If non-empty specifies a path under which inherited HTTP paths
are rooted.
string root = 2;
Returns:The bytes for root.
/** * <pre> * If non-empty specifies a path under which inherited HTTP paths * are rooted. * </pre> * * <code>string root = 2;</code> * @return The bytes for root. */
public com.google.protobuf.ByteString getRootBytes() { java.lang.Object ref = root_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); root_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!getNameBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); } if (!getRootBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, root_); } unknownFields.writeTo(output); } @java.lang.Override 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 (!getRootBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, root_); } 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.protobuf.Mixin)) { return super.equals(obj); } com.google.protobuf.Mixin other = (com.google.protobuf.Mixin) obj; if (!getName() .equals(other.getName())) return false; if (!getRoot() .equals(other.getRoot())) 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) + NAME_FIELD_NUMBER; hash = (53 * hash) + getName().hashCode(); hash = (37 * hash) + ROOT_FIELD_NUMBER; hash = (53 * hash) + getRoot().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.google.protobuf.Mixin parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.protobuf.Mixin parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.protobuf.Mixin parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.protobuf.Mixin 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.protobuf.Mixin parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.protobuf.Mixin parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.protobuf.Mixin parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.protobuf.Mixin 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.protobuf.Mixin parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.google.protobuf.Mixin 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.protobuf.Mixin parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.protobuf.Mixin 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.protobuf.Mixin 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; }
Declares an API Interface to be included in this interface. The including
interface must redeclare all the methods from the included interface, but
documentation and options are inherited as follows:
- If after comment and whitespace stripping, the documentation
  string of the redeclared method is empty, it will be inherited
  from the original method.
- Each annotation belonging to the service config (http,
  visibility) which is not set in the redeclared method will be
  inherited.
- If an http annotation is inherited, the path pattern will be
  modified as follows. Any version prefix will be replaced by the
  version of the including interface plus the [root][] path if
  specified.
Example of a simple mixin:
    package google.acl.v1;
    service AccessControl {
      // Get the underlying ACL object.
      rpc GetAcl(GetAclRequest) returns (Acl) {
        option (google.api.http).get = "/v1/{resource=**}:getAcl";
      }
    }
    package google.storage.v2;
    service Storage {
      rpc GetAcl(GetAclRequest) returns (Acl);
      // Get a data record.
      rpc GetData(GetDataRequest) returns (Data) {
        option (google.api.http).get = "/v2/{resource=**}";
      }
    }
Example of a mixin configuration:
    apis:
    - name: google.storage.v2.Storage
      mixins:
      - name: google.acl.v1.AccessControl
The mixin construct implies that all methods in `AccessControl` are
also declared with same name and request/response types in
`Storage`. A documentation generator or annotation processor will
see the effective `Storage.GetAcl` method after inherting
documentation and annotations as follows:
    service Storage {
      // Get the underlying ACL object.
      rpc GetAcl(GetAclRequest) returns (Acl) {
        option (google.api.http).get = "/v2/{resource=**}:getAcl";
      }
      ...
    }
Note how the version in the path pattern changed from `v1` to `v2`.
If the `root` field in the mixin is specified, it should be a
relative path under which inherited HTTP paths are placed. Example:
    apis:
    - name: google.storage.v2.Storage
      mixins:
      - name: google.acl.v1.AccessControl
        root: acls
This implies the following inherited HTTP annotation:
    service Storage {
      // Get the underlying ACL object.
      rpc GetAcl(GetAclRequest) returns (Acl) {
        option (google.api.http).get = "/v2/acls/{resource=**}:getAcl";
      }
      ...
    }
Protobuf type google.protobuf.Mixin
/** * <pre> * Declares an API Interface to be included in this interface. The including * interface must redeclare all the methods from the included interface, but * documentation and options are inherited as follows: * - If after comment and whitespace stripping, the documentation * string of the redeclared method is empty, it will be inherited * from the original method. * - Each annotation belonging to the service config (http, * visibility) which is not set in the redeclared method will be * inherited. * - If an http annotation is inherited, the path pattern will be * modified as follows. Any version prefix will be replaced by the * version of the including interface plus the [root][] path if * specified. * Example of a simple mixin: * package google.acl.v1; * service AccessControl { * // Get the underlying ACL object. * rpc GetAcl(GetAclRequest) returns (Acl) { * option (google.api.http).get = "/v1/{resource=**}:getAcl"; * } * } * package google.storage.v2; * service Storage { * rpc GetAcl(GetAclRequest) returns (Acl); * // Get a data record. * rpc GetData(GetDataRequest) returns (Data) { * option (google.api.http).get = "/v2/{resource=**}"; * } * } * Example of a mixin configuration: * apis: * - name: google.storage.v2.Storage * mixins: * - name: google.acl.v1.AccessControl * The mixin construct implies that all methods in `AccessControl` are * also declared with same name and request/response types in * `Storage`. A documentation generator or annotation processor will * see the effective `Storage.GetAcl` method after inherting * documentation and annotations as follows: * service Storage { * // Get the underlying ACL object. * rpc GetAcl(GetAclRequest) returns (Acl) { * option (google.api.http).get = "/v2/{resource=**}:getAcl"; * } * ... * } * Note how the version in the path pattern changed from `v1` to `v2`. * If the `root` field in the mixin is specified, it should be a * relative path under which inherited HTTP paths are placed. Example: * apis: * - name: google.storage.v2.Storage * mixins: * - name: google.acl.v1.AccessControl * root: acls * This implies the following inherited HTTP annotation: * service Storage { * // Get the underlying ACL object. * rpc GetAcl(GetAclRequest) returns (Acl) { * option (google.api.http).get = "/v2/acls/{resource=**}:getAcl"; * } * ... * } * </pre> * * Protobuf type {@code google.protobuf.Mixin} */
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements // @@protoc_insertion_point(builder_implements:google.protobuf.Mixin) com.google.protobuf.MixinOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.protobuf.ApiProto.internal_static_google_protobuf_Mixin_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.protobuf.ApiProto.internal_static_google_protobuf_Mixin_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.protobuf.Mixin.class, com.google.protobuf.Mixin.Builder.class); } // Construct using com.google.protobuf.Mixin.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(); name_ = ""; root_ = ""; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.protobuf.ApiProto.internal_static_google_protobuf_Mixin_descriptor; } @java.lang.Override public com.google.protobuf.Mixin getDefaultInstanceForType() { return com.google.protobuf.Mixin.getDefaultInstance(); } @java.lang.Override public com.google.protobuf.Mixin build() { com.google.protobuf.Mixin result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.protobuf.Mixin buildPartial() { com.google.protobuf.Mixin result = new com.google.protobuf.Mixin(this); result.name_ = name_; result.root_ = root_; 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.protobuf.Mixin) { return mergeFrom((com.google.protobuf.Mixin)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.protobuf.Mixin other) { if (other == com.google.protobuf.Mixin.getDefaultInstance()) return this; if (!other.getName().isEmpty()) { name_ = other.name_; onChanged(); } if (!other.getRoot().isEmpty()) { root_ = other.root_; onChanged(); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { com.google.protobuf.Mixin parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.google.protobuf.Mixin) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private java.lang.Object name_ = "";
The fully qualified name of the interface which is included.
string name = 1;
Returns:The name.
/** * <pre> * The fully qualified name of the interface which is included. * </pre> * * <code>string name = 1;</code> * @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; } }
The fully qualified name of the interface which is included.
string name = 1;
Returns:The bytes for name.
/** * <pre> * The fully qualified name of the interface which is included. * </pre> * * <code>string name = 1;</code> * @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; } }
The fully qualified name of the interface which is included.
string name = 1;
Params:
  • value – The name to set.
Returns:This builder for chaining.
/** * <pre> * The fully qualified name of the interface which is included. * </pre> * * <code>string name = 1;</code> * @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; onChanged(); return this; }
The fully qualified name of the interface which is included.
string name = 1;
Returns:This builder for chaining.
/** * <pre> * The fully qualified name of the interface which is included. * </pre> * * <code>string name = 1;</code> * @return This builder for chaining. */
public Builder clearName() { name_ = getDefaultInstance().getName(); onChanged(); return this; }
The fully qualified name of the interface which is included.
string name = 1;
Params:
  • value – The bytes for name to set.
Returns:This builder for chaining.
/** * <pre> * The fully qualified name of the interface which is included. * </pre> * * <code>string name = 1;</code> * @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; onChanged(); return this; } private java.lang.Object root_ = "";
If non-empty specifies a path under which inherited HTTP paths
are rooted.
string root = 2;
Returns:The root.
/** * <pre> * If non-empty specifies a path under which inherited HTTP paths * are rooted. * </pre> * * <code>string root = 2;</code> * @return The root. */
public java.lang.String getRoot() { java.lang.Object ref = root_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); root_ = s; return s; } else { return (java.lang.String) ref; } }
If non-empty specifies a path under which inherited HTTP paths
are rooted.
string root = 2;
Returns:The bytes for root.
/** * <pre> * If non-empty specifies a path under which inherited HTTP paths * are rooted. * </pre> * * <code>string root = 2;</code> * @return The bytes for root. */
public com.google.protobuf.ByteString getRootBytes() { java.lang.Object ref = root_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); root_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } }
If non-empty specifies a path under which inherited HTTP paths
are rooted.
string root = 2;
Params:
  • value – The root to set.
Returns:This builder for chaining.
/** * <pre> * If non-empty specifies a path under which inherited HTTP paths * are rooted. * </pre> * * <code>string root = 2;</code> * @param value The root to set. * @return This builder for chaining. */
public Builder setRoot( java.lang.String value) { if (value == null) { throw new NullPointerException(); } root_ = value; onChanged(); return this; }
If non-empty specifies a path under which inherited HTTP paths
are rooted.
string root = 2;
Returns:This builder for chaining.
/** * <pre> * If non-empty specifies a path under which inherited HTTP paths * are rooted. * </pre> * * <code>string root = 2;</code> * @return This builder for chaining. */
public Builder clearRoot() { root_ = getDefaultInstance().getRoot(); onChanged(); return this; }
If non-empty specifies a path under which inherited HTTP paths
are rooted.
string root = 2;
Params:
  • value – The bytes for root to set.
Returns:This builder for chaining.
/** * <pre> * If non-empty specifies a path under which inherited HTTP paths * are rooted. * </pre> * * <code>string root = 2;</code> * @param value The bytes for root to set. * @return This builder for chaining. */
public Builder setRootBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); root_ = value; onChanged(); return this; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:google.protobuf.Mixin) } // @@protoc_insertion_point(class_scope:google.protobuf.Mixin) private static final com.google.protobuf.Mixin DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.protobuf.Mixin(); } public static com.google.protobuf.Mixin getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser<Mixin> PARSER = new com.google.protobuf.AbstractParser<Mixin>() { @java.lang.Override public Mixin parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new Mixin(input, extensionRegistry); } }; public static com.google.protobuf.Parser<Mixin> parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser<Mixin> getParserForType() { return PARSER; } @java.lang.Override public com.google.protobuf.Mixin getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }