Interface Generated.ServerAddressByClientCIDROrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Generated.ServerAddressByClientCIDR,Generated.ServerAddressByClientCIDR.Builder
- Enclosing class:
- Generated
public static interface Generated.ServerAddressByClientCIDROrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetClientCIDR()The CIDR with which clients can match their IP to figure out the server address that they should use.com.google.protobuf.ByteStringgetClientCIDRBytes()The CIDR with which clients can match their IP to figure out the server address that they should use.StringgetServerAddress()Address of this server, suitable for a client that matches the above CIDR.com.google.protobuf.ByteStringgetServerAddressBytes()Address of this server, suitable for a client that matches the above CIDR.booleanhasClientCIDR()The CIDR with which clients can match their IP to figure out the server address that they should use.booleanhasServerAddress()Address of this server, suitable for a client that matches the above CIDR.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasClientCIDR
boolean hasClientCIDR()
The CIDR with which clients can match their IP to figure out the server address that they should use.
optional string clientCIDR = 1;- Returns:
- Whether the clientCIDR field is set.
-
getClientCIDR
String getClientCIDR()
The CIDR with which clients can match their IP to figure out the server address that they should use.
optional string clientCIDR = 1;- Returns:
- The clientCIDR.
-
getClientCIDRBytes
com.google.protobuf.ByteString getClientCIDRBytes()
The CIDR with which clients can match their IP to figure out the server address that they should use.
optional string clientCIDR = 1;- Returns:
- The bytes for clientCIDR.
-
hasServerAddress
boolean hasServerAddress()
Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.
optional string serverAddress = 2;- Returns:
- Whether the serverAddress field is set.
-
getServerAddress
String getServerAddress()
Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.
optional string serverAddress = 2;- Returns:
- The serverAddress.
-
getServerAddressBytes
com.google.protobuf.ByteString getServerAddressBytes()
Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.
optional string serverAddress = 2;- Returns:
- The bytes for serverAddress.
-
-