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

shade.polaris.io.grpc.lb.v1.Server Maven / Gradle / Ivy

There is a newer version: 2.0.0.0-RC3
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: grpc/lb/v1/load_balancer.proto

// Protobuf Java Version: 3.25.1
package io.grpc.lb.v1;

/**
 * 
 * Contains server information. When the drop field is not true, use the other
 * fields.
 * 
* * Protobuf type {@code grpc.lb.v1.Server} */ public final class Server extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:grpc.lb.v1.Server) ServerOrBuilder { private static final long serialVersionUID = 0L; // Use Server.newBuilder() to construct. private Server(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private Server() { ipAddress_ = com.google.protobuf.ByteString.EMPTY; loadBalanceToken_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new Server(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.grpc.lb.v1.LoadBalancerProto.internal_static_grpc_lb_v1_Server_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.grpc.lb.v1.LoadBalancerProto.internal_static_grpc_lb_v1_Server_fieldAccessorTable .ensureFieldAccessorsInitialized( io.grpc.lb.v1.Server.class, io.grpc.lb.v1.Server.Builder.class); } public static final int IP_ADDRESS_FIELD_NUMBER = 1; private com.google.protobuf.ByteString ipAddress_ = com.google.protobuf.ByteString.EMPTY; /** *
   * A resolved address for the server, serialized in network-byte-order. It may
   * either be an IPv4 or IPv6 address.
   * 
* * bytes ip_address = 1; * @return The ipAddress. */ @java.lang.Override public com.google.protobuf.ByteString getIpAddress() { return ipAddress_; } public static final int PORT_FIELD_NUMBER = 2; private int port_ = 0; /** *
   * A resolved port number for the server.
   * 
* * int32 port = 2; * @return The port. */ @java.lang.Override public int getPort() { return port_; } public static final int LOAD_BALANCE_TOKEN_FIELD_NUMBER = 3; @SuppressWarnings("serial") private volatile java.lang.Object loadBalanceToken_ = ""; /** *
   * An opaque but printable token for load reporting. The client must include
   * the token of the picked server into the initial metadata when it starts a
   * call to that server. The token is used by the server to verify the request
   * and to allow the server to report load to the gRPC LB system. The token is
   * also used in client stats for reporting dropped calls.
   *
   * Its length can be variable but must be less than 50 bytes.
   * 
* * string load_balance_token = 3; * @return The loadBalanceToken. */ @java.lang.Override public java.lang.String getLoadBalanceToken() { java.lang.Object ref = loadBalanceToken_; 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(); loadBalanceToken_ = s; return s; } } /** *
   * An opaque but printable token for load reporting. The client must include
   * the token of the picked server into the initial metadata when it starts a
   * call to that server. The token is used by the server to verify the request
   * and to allow the server to report load to the gRPC LB system. The token is
   * also used in client stats for reporting dropped calls.
   *
   * Its length can be variable but must be less than 50 bytes.
   * 
* * string load_balance_token = 3; * @return The bytes for loadBalanceToken. */ @java.lang.Override public com.google.protobuf.ByteString getLoadBalanceTokenBytes() { java.lang.Object ref = loadBalanceToken_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); loadBalanceToken_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int DROP_FIELD_NUMBER = 4; private boolean drop_ = false; /** *
   * Indicates whether this particular request should be dropped by the client.
   * If the request is dropped, there will be a corresponding entry in
   * ClientStats.calls_finished_with_drop.
   * 
* * bool drop = 4; * @return The drop. */ @java.lang.Override public boolean getDrop() { return drop_; } 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 (!ipAddress_.isEmpty()) { output.writeBytes(1, ipAddress_); } if (port_ != 0) { output.writeInt32(2, port_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(loadBalanceToken_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, loadBalanceToken_); } if (drop_ != false) { output.writeBool(4, drop_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!ipAddress_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(1, ipAddress_); } if (port_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(2, port_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(loadBalanceToken_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, loadBalanceToken_); } if (drop_ != false) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(4, drop_); } 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 io.grpc.lb.v1.Server)) { return super.equals(obj); } io.grpc.lb.v1.Server other = (io.grpc.lb.v1.Server) obj; if (!getIpAddress() .equals(other.getIpAddress())) return false; if (getPort() != other.getPort()) return false; if (!getLoadBalanceToken() .equals(other.getLoadBalanceToken())) return false; if (getDrop() != other.getDrop()) 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) + IP_ADDRESS_FIELD_NUMBER; hash = (53 * hash) + getIpAddress().hashCode(); hash = (37 * hash) + PORT_FIELD_NUMBER; hash = (53 * hash) + getPort(); hash = (37 * hash) + LOAD_BALANCE_TOKEN_FIELD_NUMBER; hash = (53 * hash) + getLoadBalanceToken().hashCode(); hash = (37 * hash) + DROP_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getDrop()); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static io.grpc.lb.v1.Server parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.grpc.lb.v1.Server parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.grpc.lb.v1.Server parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.grpc.lb.v1.Server parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.grpc.lb.v1.Server parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.grpc.lb.v1.Server parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.grpc.lb.v1.Server parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.grpc.lb.v1.Server 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 io.grpc.lb.v1.Server parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.grpc.lb.v1.Server 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 io.grpc.lb.v1.Server parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.grpc.lb.v1.Server 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(io.grpc.lb.v1.Server 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; } /** *
   * Contains server information. When the drop field is not true, use the other
   * fields.
   * 
* * Protobuf type {@code grpc.lb.v1.Server} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:grpc.lb.v1.Server) io.grpc.lb.v1.ServerOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.grpc.lb.v1.LoadBalancerProto.internal_static_grpc_lb_v1_Server_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.grpc.lb.v1.LoadBalancerProto.internal_static_grpc_lb_v1_Server_fieldAccessorTable .ensureFieldAccessorsInitialized( io.grpc.lb.v1.Server.class, io.grpc.lb.v1.Server.Builder.class); } // Construct using io.grpc.lb.v1.Server.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; ipAddress_ = com.google.protobuf.ByteString.EMPTY; port_ = 0; loadBalanceToken_ = ""; drop_ = false; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.grpc.lb.v1.LoadBalancerProto.internal_static_grpc_lb_v1_Server_descriptor; } @java.lang.Override public io.grpc.lb.v1.Server getDefaultInstanceForType() { return io.grpc.lb.v1.Server.getDefaultInstance(); } @java.lang.Override public io.grpc.lb.v1.Server build() { io.grpc.lb.v1.Server result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.grpc.lb.v1.Server buildPartial() { io.grpc.lb.v1.Server result = new io.grpc.lb.v1.Server(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(io.grpc.lb.v1.Server result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.ipAddress_ = ipAddress_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.port_ = port_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.loadBalanceToken_ = loadBalanceToken_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.drop_ = drop_; } } @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 io.grpc.lb.v1.Server) { return mergeFrom((io.grpc.lb.v1.Server)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.grpc.lb.v1.Server other) { if (other == io.grpc.lb.v1.Server.getDefaultInstance()) return this; if (other.getIpAddress() != com.google.protobuf.ByteString.EMPTY) { setIpAddress(other.getIpAddress()); } if (other.getPort() != 0) { setPort(other.getPort()); } if (!other.getLoadBalanceToken().isEmpty()) { loadBalanceToken_ = other.loadBalanceToken_; bitField0_ |= 0x00000004; onChanged(); } if (other.getDrop() != false) { setDrop(other.getDrop()); } 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: { ipAddress_ = input.readBytes(); bitField0_ |= 0x00000001; break; } // case 10 case 16: { port_ = input.readInt32(); bitField0_ |= 0x00000002; break; } // case 16 case 26: { loadBalanceToken_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000004; break; } // case 26 case 32: { drop_ = input.readBool(); bitField0_ |= 0x00000008; break; } // case 32 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 com.google.protobuf.ByteString ipAddress_ = com.google.protobuf.ByteString.EMPTY; /** *
     * A resolved address for the server, serialized in network-byte-order. It may
     * either be an IPv4 or IPv6 address.
     * 
* * bytes ip_address = 1; * @return The ipAddress. */ @java.lang.Override public com.google.protobuf.ByteString getIpAddress() { return ipAddress_; } /** *
     * A resolved address for the server, serialized in network-byte-order. It may
     * either be an IPv4 or IPv6 address.
     * 
* * bytes ip_address = 1; * @param value The ipAddress to set. * @return This builder for chaining. */ public Builder setIpAddress(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } ipAddress_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     * A resolved address for the server, serialized in network-byte-order. It may
     * either be an IPv4 or IPv6 address.
     * 
* * bytes ip_address = 1; * @return This builder for chaining. */ public Builder clearIpAddress() { bitField0_ = (bitField0_ & ~0x00000001); ipAddress_ = getDefaultInstance().getIpAddress(); onChanged(); return this; } private int port_ ; /** *
     * A resolved port number for the server.
     * 
* * int32 port = 2; * @return The port. */ @java.lang.Override public int getPort() { return port_; } /** *
     * A resolved port number for the server.
     * 
* * int32 port = 2; * @param value The port to set. * @return This builder for chaining. */ public Builder setPort(int value) { port_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * A resolved port number for the server.
     * 
* * int32 port = 2; * @return This builder for chaining. */ public Builder clearPort() { bitField0_ = (bitField0_ & ~0x00000002); port_ = 0; onChanged(); return this; } private java.lang.Object loadBalanceToken_ = ""; /** *
     * An opaque but printable token for load reporting. The client must include
     * the token of the picked server into the initial metadata when it starts a
     * call to that server. The token is used by the server to verify the request
     * and to allow the server to report load to the gRPC LB system. The token is
     * also used in client stats for reporting dropped calls.
     *
     * Its length can be variable but must be less than 50 bytes.
     * 
* * string load_balance_token = 3; * @return The loadBalanceToken. */ public java.lang.String getLoadBalanceToken() { java.lang.Object ref = loadBalanceToken_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); loadBalanceToken_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * An opaque but printable token for load reporting. The client must include
     * the token of the picked server into the initial metadata when it starts a
     * call to that server. The token is used by the server to verify the request
     * and to allow the server to report load to the gRPC LB system. The token is
     * also used in client stats for reporting dropped calls.
     *
     * Its length can be variable but must be less than 50 bytes.
     * 
* * string load_balance_token = 3; * @return The bytes for loadBalanceToken. */ public com.google.protobuf.ByteString getLoadBalanceTokenBytes() { java.lang.Object ref = loadBalanceToken_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); loadBalanceToken_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * An opaque but printable token for load reporting. The client must include
     * the token of the picked server into the initial metadata when it starts a
     * call to that server. The token is used by the server to verify the request
     * and to allow the server to report load to the gRPC LB system. The token is
     * also used in client stats for reporting dropped calls.
     *
     * Its length can be variable but must be less than 50 bytes.
     * 
* * string load_balance_token = 3; * @param value The loadBalanceToken to set. * @return This builder for chaining. */ public Builder setLoadBalanceToken( java.lang.String value) { if (value == null) { throw new NullPointerException(); } loadBalanceToken_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     * An opaque but printable token for load reporting. The client must include
     * the token of the picked server into the initial metadata when it starts a
     * call to that server. The token is used by the server to verify the request
     * and to allow the server to report load to the gRPC LB system. The token is
     * also used in client stats for reporting dropped calls.
     *
     * Its length can be variable but must be less than 50 bytes.
     * 
* * string load_balance_token = 3; * @return This builder for chaining. */ public Builder clearLoadBalanceToken() { loadBalanceToken_ = getDefaultInstance().getLoadBalanceToken(); bitField0_ = (bitField0_ & ~0x00000004); onChanged(); return this; } /** *
     * An opaque but printable token for load reporting. The client must include
     * the token of the picked server into the initial metadata when it starts a
     * call to that server. The token is used by the server to verify the request
     * and to allow the server to report load to the gRPC LB system. The token is
     * also used in client stats for reporting dropped calls.
     *
     * Its length can be variable but must be less than 50 bytes.
     * 
* * string load_balance_token = 3; * @param value The bytes for loadBalanceToken to set. * @return This builder for chaining. */ public Builder setLoadBalanceTokenBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); loadBalanceToken_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } private boolean drop_ ; /** *
     * Indicates whether this particular request should be dropped by the client.
     * If the request is dropped, there will be a corresponding entry in
     * ClientStats.calls_finished_with_drop.
     * 
* * bool drop = 4; * @return The drop. */ @java.lang.Override public boolean getDrop() { return drop_; } /** *
     * Indicates whether this particular request should be dropped by the client.
     * If the request is dropped, there will be a corresponding entry in
     * ClientStats.calls_finished_with_drop.
     * 
* * bool drop = 4; * @param value The drop to set. * @return This builder for chaining. */ public Builder setDrop(boolean value) { drop_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** *
     * Indicates whether this particular request should be dropped by the client.
     * If the request is dropped, there will be a corresponding entry in
     * ClientStats.calls_finished_with_drop.
     * 
* * bool drop = 4; * @return This builder for chaining. */ public Builder clearDrop() { bitField0_ = (bitField0_ & ~0x00000008); drop_ = false; 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:grpc.lb.v1.Server) } // @@protoc_insertion_point(class_scope:grpc.lb.v1.Server) private static final io.grpc.lb.v1.Server DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.grpc.lb.v1.Server(); } public static io.grpc.lb.v1.Server getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public Server 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 io.grpc.lb.v1.Server getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy